{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/UouPhRoqMLK4CtFiCafO/zI4PU9AfMklTMJ8J7CDi/General.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";import*as React from\"react\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function withGridBackground(Component){return props=>{// Define the grid style\nconst gridStyle={backgroundImage:`linear-gradient(to right, #f2f3f5 1px, transparent 1px),\n                              linear-gradient(to bottom, #f2f3f5 1px, transparent 1px)`,backgroundSize:`calc(1cm / 3) calc(1cm / 3)`};// Apply the grid style to the component's existing styles\nconst combinedStyle={...props.style,...gridStyle};return /*#__PURE__*/_jsx(Component,{...props,style:combinedStyle});};}export function withSquigglyBackground(Component){return props=>{// Creating an SVG pattern for the squiggly lines\nconst squigglyPattern=`\n            <svg width=\"100%\" height=\"100%\" xmlns=\"http://www.w3.org/2000/svg\">\n                <defs>\n                    <pattern id=\"squigglyPattern\" width=\"100\" height=\"25\" patternUnits=\"userSpaceOnUse\">\n                        <path d=\"M0 10 Q 25 0, 50 10 T 100 10\" stroke=\"#f2f3f5\" stroke-width=\"1\" fill=\"none\"/>\n                    </pattern>\n                </defs>\n                <rect width=\"100%\" height=\"100%\" fill=\"url(#squigglyPattern)\" />\n            </svg>\n        `;const squigglyStyle={backgroundImage:`url('data:image/svg+xml;utf8,${encodeURIComponent(squigglyPattern)}')`,backgroundSize:`calc(2.54cm / 4) calc(2.54cm / 4)`};return /*#__PURE__*/_jsx(Component,{...props,style:squigglyStyle});};}export function withHoverLinkStyle(Component){return props=>{// Custom CSS for the hover effect\nconst customCSS=`\n            a {\n                position: relative;\n                text-decoration: none;\n                color: black;\n            }\n\n            a::before {\n                content: '';\n                position: absolute;\n                width: 100%;\n                height: 2px;\n                bottom: 0;\n                left: 0;\n                background-color: orange;\n                visibility: hidden;\n                transform: scaleX(0);\n                transition: all 0.3s ease-in-out 0s;\n            }\n\n            a:hover::before {\n                visibility: visible;\n                transform: scaleX(1);\n            }\n        `;// Injecting the CSS into the document\nReact.useEffect(()=>{const styleSheet=document.createElement(\"style\");styleSheet.type=\"text/css\";styleSheet.innerText=customCSS;document.head.appendChild(styleSheet);return()=>{document.head.removeChild(styleSheet);};},[]);return /*#__PURE__*/_jsx(Component,{...props});};}export function withArchedLayout(Component){return props=>{// Assuming a fixed number of items and radius for simplicity\nconst itemCount=5// Replace with dynamic count if needed\n;const radius=200// This can be dynamic as well\n;const[positions,setPositions]=useState([]);useEffect(()=>{const angleStep=180/(itemCount-1);const newPositions=[];for(let i=0;i<itemCount;i++){const angle=angleStep*i;const radians=angle*Math.PI/180;const x=radius*Math.cos(radians);const y=radius*Math.sin(radians);newPositions.push({x,y});}setPositions(newPositions);},[itemCount,radius]);return /*#__PURE__*/_jsx(Component,{...props,children:positions.map((position,index)=>/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",left:`${50+position.x}%`,bottom:`${position.y}px`,transform:\"translateX(-50%)\"}},index))});};}export function withCursorFollow(Component){return props=>{const ref=useRef(null);const[isHovering,setIsHovering]=useState(false);const[position,setPosition]=useState({left:0,top:0});useEffect(()=>{const handleMouseMove=e=>{if(!ref.current)return;const isHovered=e.target instanceof Element&&(e.target===ref.current.parentElement||ref.current.parentElement.contains(e.target)||e.target===ref.current||ref.current.contains(e.target));setIsHovering(isHovered);if(isHovered){const parentRect=ref.current.parentElement.getBoundingClientRect();const elementRect=ref.current.getBoundingClientRect();setPosition({left:e.clientX-parentRect.left-elementRect.width/2,top:e.clientY-parentRect.top-elementRect.height/2});}else{setIsHovering(false);}};window.addEventListener(\"mousemove\",handleMouseMove);return()=>{window.removeEventListener(\"mousemove\",handleMouseMove);};},[]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{position:\"fixed\",left:`calc(${position.left}px - 0.1%)`,top:`calc(${position.top}px - 0.1%)`,pointerEvents:\"none\",transform:\"translate(-0.1%, -0.1%)\"},children:isHovering&&/*#__PURE__*/_jsx(Component,{...props})});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHoverLinkStyle\":{\"type\":\"reactHoc\",\"name\":\"withHoverLinkStyle\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCursorFollow\":{\"type\":\"reactHoc\",\"name\":\"withCursorFollow\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSquigglyBackground\":{\"type\":\"reactHoc\",\"name\":\"withSquigglyBackground\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withGridBackground\":{\"type\":\"reactHoc\",\"name\":\"withGridBackground\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withArchedLayout\":{\"type\":\"reactHoc\",\"name\":\"withArchedLayout\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./General.map"],
  "mappings": "qEAAqF,SAASA,EAAYC,EAAO,CACjH,IAAMC,EAAUC,EAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,EAASP,CAAU,EAIzC,OAFAQ,EAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,EAAe,IAAI,IAAMA,EAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCfvC,IAAMM,EAAgB,CACzB,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASO,IAAMC,EAAyB,CAClC,GAAGC,EACH,SAAU,QACd,ECfA,IAAMC,EAASC,EAAY,CAAC,WAAW,SAAS,CAAC,EAAigB,SAASC,EAAmBC,EAAU,CAAC,OAAOC,GAAO,CACvmB,IAAMC,EAAU,CAAC,gBAAgB;AAAA,wFACuD,eAAe,6BAA6B,EAC9HC,EAAc,CAAC,GAAGF,EAAM,MAAM,GAAGC,CAAS,EAAE,OAAoBE,EAAKJ,EAAU,CAAC,GAAGC,EAAM,MAAME,CAAa,CAAC,CAAE,CAAE",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withGridBackground", "Component", "props", "gridStyle", "combinedStyle", "p"]
}
