{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/U9wra4rwlT2NbUvSaz8f/t8SPvPakGihZ7WKHocbl/TableCMS.js", "ssg:https://framerusercontent.com/modules/7ZXAnJ9x4YreEef2S9bJ/s5tn3dv31kT6m3og8ctd/P7z4TuZQS.js", "ssg:https://framerusercontent.com/modules/h2NGvmIVCk4PAQSm9NRl/hWR0E0JNgXn3CvelG4Jl/rgd3b9S4n.js", "ssg:https://framerusercontent.com/modules/6qTLgzXwzdOvbx9aRZmO/qrzSSkTfcqr7zQlLps1i/htuaY8raB.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", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({background:\"#f0f0f0\"});export function TableOverride(Component){return props=>{const[store]=useStore();const extractAndFormatTable=React.useCallback(()=>{const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{const codeBlocks=contentDiv.querySelectorAll(\".framer-text.framer-text-module\");codeBlocks.forEach(codeBlock=>{if(codeBlock instanceof HTMLElement){// Get the framer-cb div to access CSS variables\nconst framerCbDiv=codeBlock.querySelector(\".framer-cb\");if(!framerCbDiv)return;// Extract CSS variables from the style attribute\nconst styleAttr=framerCbDiv.getAttribute(\"style\")||\"\";const cssVars={};styleAttr.split(\";\").forEach(pair=>{const[key,value]=pair.split(\":\").map(s=>s.trim());if(key.startsWith(\"--\")){cssVars[key]=value;}});// Determine if we're in light or dark mode\nconst colorScheme=cssVars[\"--cb-color-scheme-dark\"]===\"light\"?\"light\":\"dark\";// Find the div with the border (sp-layout)\nconst borderDiv=codeBlock.querySelector(\".sp-layout\");if(!borderDiv)return;// Extract the border properties and padding from the style attribute\nconst borderStyle=window.getComputedStyle(borderDiv);const borderWidth=borderStyle.borderWidth;const borderColor=borderStyle.borderColor;const borderRadius=borderStyle.borderRadius;const padding=borderStyle.getPropertyValue(\"--cb-padding\")||\"27px\"// Default to 27px if not set\n;// Create an outer container for the border\nconst outerContainer=document.createElement(\"div\");outerContainer.style.cssText=`\n                            border: ${borderWidth} solid ${borderColor};\n                            border-radius: ${borderRadius};\n                            overflow: hidden;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create an inner container for the scrollable content\nconst innerContainer=document.createElement(\"div\");innerContainer.style.cssText=`\n                            overflow: auto;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create the table\nconst table=document.createElement(\"table\");table.style.cssText=`\n                            border-collapse: separate;\n                            border-spacing: 0;\n                            width: 100%;\n                        `;// Convert extracted content to HTML table\nconst codeContent=codeBlock.textContent||\"\";const tableLines=codeContent.split(/\\r?\\n/).filter(line=>line.trim()!==\"\");const tableHtml=tableLines.map((row,index)=>{const cells=row.split(\"|\").map(cell=>cell.trim()).filter(cell=>cell!==\"\");if(index===0){return`<tr>${cells.map((cell,cellIndex)=>`<th${cellIndex===0?' class=\"first-column\"':\"\"}>${cell}</th>`).join(\"\")}</tr>`;}else if(index===1){return\"\"// Skip the separator row\n;}else{while(cells.length<4){cells.push(\"\");}return`<tr>${cells.map((cell,cellIndex)=>`<td${cellIndex===0?' class=\"first-column\"':\"\"}>${cell.replace(/\\<br\\>/g,\"<br>\")}</td>`).join(\"\")}</tr>`;}}).filter(row=>row!==\"\").join(\"\");table.innerHTML=`\n                            <table style=\"width: 100%; border-collapse: separate; border-spacing: 0;\">\n                                ${tableHtml}\n                            </table>\n                        `;// Add styles\nconst style=document.createElement(\"style\");style.textContent=`\n                            table th, table td {\n                                padding: ${padding};\n                                text-align: left;\n                                background-color: ${cssVars[`--cb-colors-surface1-${colorScheme}`]};\n                                border-right: 1px solid ${borderColor};\n                                border-bottom: 1px solid ${borderColor};\n                            }\n                            table th {\n                                font-weight: bold;\n                                color: ${cssVars[`--cb-syntax-color-plain-${colorScheme}`]};\n                                position: sticky;\n                                top: 0;\n                                z-index: 1;\n                            }\n                            .first-column {\n                                white-space: nowrap;\n                                overflow: hidden;\n                                text-overflow: ellipsis;\n                            }\n                            table tr:last-child td {\n                                border-bottom: none;\n                            }\n                            table th:last-child,\n                            table td:last-child {\n                                border-right: none;\n                            }\n                        `;outerContainer.appendChild(style);// Assemble the structure\ninnerContainer.appendChild(table);outerContainer.appendChild(innerContainer);// Replace the content of the code block with the new structure\ncodeBlock.innerHTML=\"\";codeBlock.appendChild(outerContainer);}});});},[store.background]);React.useEffect(()=>{extractAndFormatTable();// Add a MutationObserver to handle dynamic content changes\nconst observer=new MutationObserver(extractAndFormatTable);const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{observer.observe(contentDiv,{childList:true,subtree:true});});// Remove white-space: pre-wrap from the Content div and set opacity to 1\nconst style=document.createElement(\"style\");style.textContent=`\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] > div {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n            `;document.head.appendChild(style);return()=>{observer.disconnect();document.head.removeChild(style);};},[extractAndFormatTable]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"TableOverride\":{\"type\":\"reactHoc\",\"name\":\"TableOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableCMS.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;MYuenHK SemiBold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"MYuenHK SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/PysU2UF8yahmd63vS6giZHBdiCg.woff2\"}]}];export const css=['.framer-yxBOt .framer-styles-preset-z1hvz4:not(.rich-text-wrapper), .framer-yxBOt .framer-styles-preset-z1hvz4.rich-text-wrapper p { --framer-font-family: \"MYuenHK SemiBold\", \"MYuenHK SemiBold Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, #18212d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-yxBOt\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (552ec80)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;VAGRounded Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"VAGRounded Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/zxaFBZmGaFByPhhwH9ZANt11A.woff2\"}]}];export const css=['.framer-je4hz .framer-styles-preset-1l1e4gv:not(.rich-text-wrapper), .framer-je4hz .framer-styles-preset-1l1e4gv.rich-text-wrapper p { --framer-font-family: \"VAGRounded Bold\", \"VAGRounded Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 25px; --framer-text-alignment: justify; --framer-text-color: var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, #18212d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-je4hz\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SectionNavigationMain from\"#framer/local/canvasComponent/tbp8pehZt/tbp8pehZt.js\";import CardPost from\"#framer/local/canvasComponent/TkVtt_hzI/TkVtt_hzI.js\";import SectionFooter from\"#framer/local/canvasComponent/zReXY2H00/zReXY2H00.js\";import{TableOverride}from\"#framer/local/codeFile/jNeS1wU/TableCMS.js\";import Blog from\"#framer/local/collection/WsNbU4w8w/WsNbU4w8w.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle8 from\"#framer/local/css/DEmW3aBy6/DEmW3aBy6.js\";import*as sharedStyle4 from\"#framer/local/css/e_9H3gbqV/e_9H3gbqV.js\";import*as sharedStyle6 from\"#framer/local/css/lWluT33sC/lWluT33sC.js\";import*as sharedStyle from\"#framer/local/css/P7z4TuZQS/P7z4TuZQS.js\";import*as sharedStyle2 from\"#framer/local/css/qaoULVCyn/qaoULVCyn.js\";import*as sharedStyle9 from\"#framer/local/css/qocwnn8fI/qocwnn8fI.js\";import*as sharedStyle7 from\"#framer/local/css/rgd3b9S4n/rgd3b9S4n.js\";import*as sharedStyle3 from\"#framer/local/css/tEJTVAXv8/tEJTVAXv8.js\";import*as sharedStyle10 from\"#framer/local/css/tSrDWP_jL/tSrDWP_jL.js\";import*as sharedStyle1 from\"#framer/local/css/wO5Hjxn0L/wO5Hjxn0L.js\";import*as sharedStyle5 from\"#framer/local/css/yhnwT80_B/yhnwT80_B.js\";import metadataProvider from\"#framer/local/webPageMetadata/htuaY8raB/htuaY8raB.js\";const SectionNavigationMainFonts=getFonts(SectionNavigationMain);const RichTextTableOverride1feidkw=withCodeBoundaryForOverrides(RichText,{nodeId:\"FvELbryhI\",override:TableOverride,scopeId:\"htuaY8raB\"});const CardPostFonts=getFonts(CardPost);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={DC3hiqMGU:\"(min-width: 810px) and (max-width: 1199px)\",l6kg0pNwF:\"(max-width: 809px)\",uxmpDixMj:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-RWycy\";const variantClassNames={DC3hiqMGU:\"framer-v-utne09\",l6kg0pNwF:\"framer-v-dz6zin\",uxmpDixMj:\"framer-v-83dxp0\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"uxmpDixMj\",Phone:\"l6kg0pNwF\",Tablet:\"DC3hiqMGU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"uxmpDixMj\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"htuaY8raB\",data:Blog,type:\"Collection\"},select:[{collection:\"htuaY8raB\",name:\"rHY_qqU3I\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"XwaMYqqLP\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"o02bw1L7D\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"YAWKiZPbE\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"ZAhJZlDc5\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"z678e2ctI\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"WKle3rGXH\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"SGsdxMYbx\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"lLEa_MlGe\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"bQRHD9sOV\",type:\"Identifier\"},{collection:\"htuaY8raB\",name:\"j4NwkLFhd\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"htuaY8raB\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,YAWKiZPbE=getFromCurrentRouteData(\"YAWKiZPbE\"),o02bw1L7D=getFromCurrentRouteData(\"o02bw1L7D\"),rHY_qqU3I=getFromCurrentRouteData(\"rHY_qqU3I\")??\"\",SGsdxMYbx=getFromCurrentRouteData(\"SGsdxMYbx\")??\"\",WKle3rGXH=getFromCurrentRouteData(\"WKle3rGXH\"),ZAhJZlDc5=getFromCurrentRouteData(\"ZAhJZlDc5\")??\"\",z678e2ctI=getFromCurrentRouteData(\"z678e2ctI\")??\"\",j4NwkLFhd=getFromCurrentRouteData(\"j4NwkLFhd\")??\"\",YAWKiZPbECKHARE9zx,rHY_qqU3ICKHARE9zx,SGsdxMYbxCKHARE9zx,XwaMYqqLPCKHARE9zx,idCKHARE9zx,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=toDateString(o02bw1L7D,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"uxmpDixMj\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2fffd217-b9c0-4b7d-98aa-e3ed06d5706f, rgb(250, 250, 250)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-83dxp0\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tgm9pn-container\",layoutScroll:true,nodeId:\"h3uyN0Lz_\",scopeId:\"htuaY8raB\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DC3hiqMGU:{variant:\"fLAUrdnF6\"},l6kg0pNwF:{variant:\"fLAUrdnF6\"}},children:/*#__PURE__*/_jsx(SectionNavigationMain,{height:\"100%\",id:\"h3uyN0Lz_\",layoutId:\"h3uyN0Lz_\",style:{width:\"100%\"},variant:\"mYC7CdA8p\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xhm6fv\",\"data-framer-name\":\"Spacing\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16wy4r2\",\"data-framer-name\":\"ThePlace Content Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hxptc2\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DC3hiqMGU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+80+0),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px) * 0.4018)`,...toResponsiveImage(YAWKiZPbE),...{positionX:\"center\",positionY:\"top\"}}},l6kg0pNwF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+70+60+0+0),sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,...toResponsiveImage(YAWKiZPbE),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+100+0),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.4018)`,...toResponsiveImage(YAWKiZPbE),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-kb02v4\",\"data-framer-name\":\"Post Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p67yjo\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aaio9c\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbnpba\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gok9en\",\"data-border\":true,\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z1hvz4\",\"data-styles-preset\":\"P7z4TuZQS\",children:\"Contact\"})}),className:\"framer-1m4mnka\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DC3hiqMGU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZBR1JvdW5kZWQgQm9sZA==\",\"--framer-font-family\":'\"VAGRounded Bold\", \"VAGRounded Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"ThePlace \u7DB2\u5E97\u7DB2\u57DF/\u7DB2\u5740\u4ECB\u7D39 Custom Domain\u529F\u80FD\"})})},l6kg0pNwF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZBR1JvdW5kZWQgQm9sZA==\",\"--framer-font-family\":'\"VAGRounded Bold\", \"VAGRounded Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"ThePlace \u7DB2\u5E97\u7DB2\u57DF/\u7DB2\u5740\u4ECB\u7D39 Custom Domain\u529F\u80FD\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZBR1JvdW5kZWQgQm9sZA==\",\"--framer-font-family\":'\"VAGRounded Bold\", \"VAGRounded Bold Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"ThePlace \u7DB2\u5E97\u7DB2\u57DF/\u7DB2\u5740\u4ECB\u7D39 Custom Domain\u529F\u80FD\"})}),className:\"framer-12g7vh2\",fonts:[\"CUSTOM;VAGRounded Bold\"],text:rHY_qqU3I,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DC3hiqMGU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZBR1JvdW5kZWQgQm9sZA==\",\"--framer-font-family\":'\"VAGRounded Bold\", \"VAGRounded Bold Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\"},children:\"HKTV\u96C6\u5718\u65D7\u4E0B\u4E00\u7AD9\u5F0F\u7DB2\u5E97\u5E73\u53F0\u300CThePlace\u300D\uFF0C\u5354\u52A9\u5546\u6236\u555F\u52D5\u81EA\u5DF1\u7684\u7368\u7ACB\u7DB2\u5E97\uFF0C\u62D3\u5C55\u66F4\u5927\u7684\u96FB\u5546\u5E02\u5834\u548C\u63D0\u9AD8\u6536\u76CA\u3002\u540C\u6642\u300CThePlace\u300D\u4EA6\u81F4\u529B\u63D0\u4F9B\u4E00\u500B\u591A\u6A23\u5316\u7684\u5E02\u5834\uFF0C\u8B93\u5BA2\u6236\u4EA6\u53EF\u4EE5\u5728\u9019\u500B\u65B9\u4FBF\u7684\u5E73\u53F0\u627E\u5230\u591A\u5143\u5316\u512A\u8CEA\u7684\u7522\u54C1\u548C\u670D\u52D9\u3002\"})})},l6kg0pNwF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZBR1JvdW5kZWQgQm9sZA==\",\"--framer-font-family\":'\"VAGRounded Bold\", \"VAGRounded Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\"},children:\"HKTV\u96C6\u5718\u65D7\u4E0B\u4E00\u7AD9\u5F0F\u7DB2\u5E97\u5E73\u53F0\u300CThePlace\u300D\uFF0C\u5354\u52A9\u5546\u6236\u555F\u52D5\u81EA\u5DF1\u7684\u7368\u7ACB\u7DB2\u5E97\uFF0C\u62D3\u5C55\u66F4\u5927\u7684\u96FB\u5546\u5E02\u5834\u548C\u63D0\u9AD8\u6536\u76CA\u3002\u540C\u6642\u300CThePlace\u300D\u4EA6\u81F4\u529B\u63D0\u4F9B\u4E00\u500B\u591A\u6A23\u5316\u7684\u5E02\u5834\uFF0C\u8B93\u5BA2\u6236\u4EA6\u53EF\u4EE5\u5728\u9019\u500B\u65B9\u4FBF\u7684\u5E73\u53F0\u627E\u5230\u591A\u5143\u5316\u512A\u8CEA\u7684\u7522\u54C1\u548C\u670D\u52D9\u3002\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZBR1JvdW5kZWQgQm9sZA==\",\"--framer-font-family\":'\"VAGRounded Bold\", \"VAGRounded Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\"},children:\"HKTV\u96C6\u5718\u65D7\u4E0B\u4E00\u7AD9\u5F0F\u7DB2\u5E97\u5E73\u53F0\u300CThePlace\u300D\uFF0C\u5354\u52A9\u5546\u6236\u555F\u52D5\u81EA\u5DF1\u7684\u7368\u7ACB\u7DB2\u5E97\uFF0C\u62D3\u5C55\u66F4\u5927\u7684\u96FB\u5546\u5E02\u5834\u548C\u63D0\u9AD8\u6536\u76CA\u3002\u540C\u6642\u300CThePlace\u300D\u4EA6\u81F4\u529B\u63D0\u4F9B\u4E00\u500B\u591A\u6A23\u5316\u7684\u5E02\u5834\uFF0C\u8B93\u5BA2\u6236\u4EA6\u53EF\u4EE5\u5728\u9019\u500B\u65B9\u4FBF\u7684\u5E73\u53F0\u627E\u5230\u591A\u5143\u5316\u512A\u8CEA\u7684\u7522\u54C1\u548C\u670D\u52D9\u3002\"})}),className:\"framer-k3wpyh\",fonts:[\"CUSTOM;VAGRounded Bold\"],text:SGsdxMYbx,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://api.whatsapp.com/send/?phone=39580028&text=%E6%88%91%E6%83%B3%E4%BA%86%E8%A7%A3%E3%80%8CThePlace%E3%80%8D%E9%96%8B%E7%B6%B2%E5%BA%97%E6%96%B9%E6%A1%88&type=phone_number&app_absent=0\",motionChild:true,nodeId:\"t3lgBHoLl\",scopeId:\"htuaY8raB\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1xdrkqk framer-1bjkvsw\",\"data-border\":true,\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DC3hiqMGU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+80+0+30+285+0),sizes:\"46px\",...toResponsiveImage(WKle3rGXH)}},l6kg0pNwF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+70+60+0+412+30+256.4+0),sizes:\"46px\",...toResponsiveImage(WKle3rGXH)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+100+0+40+298+0),sizes:\"46px\",...toResponsiveImage(WKle3rGXH)},className:\"framer-9fvkxx\",\"data-framer-name\":\"ThePlace Logo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ld424n\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZBR1JvdW5kZWQgQm9sZA==\",\"--framer-font-family\":'\"VAGRounded Bold\", \"VAGRounded Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"ThePlace\"})}),className:\"framer-119fbw7\",fonts:[\"CUSTOM;VAGRounded Bold\"],text:ZAhJZlDc5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01ZdWVuSEsgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"MYuenHK SemiBold\", \"MYuenHK SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\"},children:\"\u5546\u6236\u52A0\u76DF\u5718\u968A\"})}),className:\"framer-4wbo7v\",fonts:[\"CUSTOM;MYuenHK SemiBold\"],text:z678e2ctI,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"Wi4iC0u1X\"]},children:/*#__PURE__*/_jsx(RichTextTableOverride1feidkw,{__fromCanvasComponent:true,children:j4NwkLFhd,className:\"framer-1feidkw\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1svm5mb\",h1:\"framer-styles-preset-1it57w5\",h2:\"framer-styles-preset-tyf0cm\",h3:\"framer-styles-preset-1eniwom\",h4:\"framer-styles-preset-1fngc33\",h5:\"framer-styles-preset-1aon197\",h6:\"framer-styles-preset-wjrbri\",img:\"framer-styles-preset-qxy4q2\",p:\"framer-styles-preset-1l1e4gv\",table:\"framer-styles-preset-1ejuxof\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qkxwsl\",\"data-framer-name\":\"ThePlace Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uolk9c\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZBR1JvdW5kZWQgQm9sZA==\",\"--framer-font-family\":'\"VAGRounded Bold\", \"VAGRounded Bold Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO01ZdWVuSEsgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"MYuenHK SemiBold\", \"MYuenHK SemiBold Placeholder\", sans-serif'},children:\"\u4E86\u89E3\u66F4\u591A\"}),\"\u300CThePlace\u300D\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO01ZdWVuSEsgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"MYuenHK SemiBold\", \"MYuenHK SemiBold Placeholder\", sans-serif'},children:\"\u958B\u7DB2\u5E97\u653B\u7565\"})]})}),className:\"framer-txfl5\",fonts:[\"CUSTOM;VAGRounded Bold\",\"CUSTOM;MYuenHK SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-120dmcp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CKHARE9zx\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"CKHARE9zx\",name:\"YAWKiZPbE\",type:\"Identifier\"},{collection:\"CKHARE9zx\",name:\"rHY_qqU3I\",type:\"Identifier\"},{collection:\"CKHARE9zx\",name:\"SGsdxMYbx\",type:\"Identifier\"},{collection:\"CKHARE9zx\",name:\"XwaMYqqLP\",type:\"Identifier\"},{collection:\"CKHARE9zx\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"CKHARE9zx\",name:\"rHY_qqU3I\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:rHY_qqU3I},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idCKHARE9zx,rHY_qqU3I:rHY_qqU3ICKHARE9zx,SGsdxMYbx:SGsdxMYbxCKHARE9zx,XwaMYqqLP:XwaMYqqLPCKHARE9zx,YAWKiZPbE:YAWKiZPbECKHARE9zx},index)=>{rHY_qqU3ICKHARE9zx??=\"\";SGsdxMYbxCKHARE9zx??=\"\";XwaMYqqLPCKHARE9zx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CKHARE9zx-${idCKHARE9zx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XwaMYqqLP:XwaMYqqLPCKHARE9zx},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{XwaMYqqLP:XwaMYqqLPCKHARE9zx},webPageId:\"htuaY8raB\"},implicitPathVariables:undefined},{href:{pathVariables:{XwaMYqqLP:XwaMYqqLPCKHARE9zx},webPageId:\"htuaY8raB\"},implicitPathVariables:undefined},{href:{pathVariables:{XwaMYqqLP:XwaMYqqLPCKHARE9zx},webPageId:\"htuaY8raB\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DC3hiqMGU:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px) - 30px) / 2, 100px)`,y:(componentViewport?.y||0)+0+874+80+0+94+0+0},l6kg0pNwF:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px), 100px)`,y:(componentViewport?.y||0)+0+1110.4+60+0+94+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:694,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 60px) / 3, 100px)`,y:(componentViewport?.y||0)+0+914+100+0+104+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-866664-container\",nodeId:\"Tw9hNFZ9_\",scopeId:\"htuaY8raB\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DC3hiqMGU:{IwFHVyAvV:resolvedLinks[1]},l6kg0pNwF:{IwFHVyAvV:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CardPost,{acOPss4Fw:toResponsiveImage(YAWKiZPbECKHARE9zx),DncdLkwvc:rHY_qqU3ICKHARE9zx,gPrA_GDEt:SGsdxMYbxCKHARE9zx,height:\"100%\",id:\"Tw9hNFZ9_\",IwFHVyAvV:resolvedLinks[0],layoutId:\"Tw9hNFZ9_\",style:{width:\"100%\"},width:\"100%\"})})})})})})})},idCKHARE9zx);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DC3hiqMGU:{y:(componentViewport?.y||0)+0+2546},l6kg0pNwF:{y:(componentViewport?.y||0)+0+2742.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:633,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2636,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zuv3s1-container\",nodeId:\"dzf35XXpS\",scopeId:\"htuaY8raB\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DC3hiqMGU:{variant:\"NmwnHhkpF\"},l6kg0pNwF:{variant:\"pPfxMwkyP\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"dzf35XXpS\",layoutId:\"dzf35XXpS\",style:{width:\"100%\"},SUmp2uPvC:true,variant:\"vZlMjtPVj\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RWycy.framer-1bjkvsw, .framer-RWycy .framer-1bjkvsw { display: block; }\",\".framer-RWycy.framer-83dxp0 { align-content: center; align-items: center; background-color: var(--token-2fffd217-b9c0-4b7d-98aa-e3ed06d5706f, #fafafa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-RWycy .framer-tgm9pn-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-RWycy .framer-1xhm6fv { flex: none; height: 64px; overflow: hidden; position: relative; width: 100%; }\",\".framer-RWycy .framer-16wy4r2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-RWycy .framer-hxptc2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RWycy .framer-kb02v4 { aspect-ratio: 0.6923076923076923 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: var(--framer-aspect-ratio-supported, 650px); overflow: hidden; position: relative; width: 40%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-RWycy .framer-1p67yjo { --border-bottom-width: 1px; --border-color: var(--token-a6a0321d-a080-4a31-b68c-218c00d1b556, rgba(24, 24, 24, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-0c23165e-65e5-4d30-89fb-fd1c14eb36e5, #fbfaf9); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RWycy .framer-1aaio9c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RWycy .framer-1bbnpba { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RWycy .framer-gok9en { --border-bottom-width: 1px; --border-color: var(--token-a6a0321d-a080-4a31-b68c-218c00d1b556, rgba(24, 24, 24, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0c23165e-65e5-4d30-89fb-fd1c14eb36e5, #fbfaf9); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 8px 6px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-RWycy .framer-1m4mnka, .framer-RWycy .framer-119fbw7, .framer-RWycy .framer-4wbo7v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RWycy .framer-12g7vh2, .framer-RWycy .framer-k3wpyh, .framer-RWycy .framer-txfl5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RWycy .framer-1xdrkqk { --border-bottom-width: 1px; --border-color: var(--token-a6a0321d-a080-4a31-b68c-218c00d1b556, rgba(24, 24, 24, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0c23165e-65e5-4d30-89fb-fd1c14eb36e5, #fbfaf9); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 10px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-RWycy .framer-9fvkxx { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; width: 46px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RWycy .framer-1ld424n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-RWycy .framer-1feidkw { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RWycy .framer-1qkxwsl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-RWycy .framer-uolk9c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-RWycy .framer-120dmcp { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(100px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-RWycy .framer-866664-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-RWycy .framer-zuv3s1-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RWycy.framer-83dxp0, .framer-RWycy .framer-16wy4r2, .framer-RWycy .framer-hxptc2, .framer-RWycy .framer-1p67yjo, .framer-RWycy .framer-1aaio9c, .framer-RWycy .framer-1bbnpba, .framer-RWycy .framer-gok9en, .framer-RWycy .framer-1xdrkqk, .framer-RWycy .framer-1ld424n, .framer-RWycy .framer-1qkxwsl, .framer-RWycy .framer-uolk9c { gap: 0px; } .framer-RWycy.framer-83dxp0 > *, .framer-RWycy .framer-1ld424n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-RWycy.framer-83dxp0 > :first-child, .framer-RWycy .framer-1p67yjo > :first-child, .framer-RWycy .framer-1aaio9c > :first-child, .framer-RWycy .framer-1bbnpba > :first-child, .framer-RWycy .framer-1ld424n > :first-child, .framer-RWycy .framer-uolk9c > :first-child { margin-top: 0px; } .framer-RWycy.framer-83dxp0 > :last-child, .framer-RWycy .framer-1p67yjo > :last-child, .framer-RWycy .framer-1aaio9c > :last-child, .framer-RWycy .framer-1bbnpba > :last-child, .framer-RWycy .framer-1ld424n > :last-child, .framer-RWycy .framer-uolk9c > :last-child { margin-bottom: 0px; } .framer-RWycy .framer-16wy4r2 > *, .framer-RWycy .framer-gok9en > *, .framer-RWycy .framer-1qkxwsl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RWycy .framer-16wy4r2 > :first-child, .framer-RWycy .framer-hxptc2 > :first-child, .framer-RWycy .framer-gok9en > :first-child, .framer-RWycy .framer-1xdrkqk > :first-child, .framer-RWycy .framer-1qkxwsl > :first-child { margin-left: 0px; } .framer-RWycy .framer-16wy4r2 > :last-child, .framer-RWycy .framer-hxptc2 > :last-child, .framer-RWycy .framer-gok9en > :last-child, .framer-RWycy .framer-1xdrkqk > :last-child, .framer-RWycy .framer-1qkxwsl > :last-child { margin-right: 0px; } .framer-RWycy .framer-hxptc2 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-RWycy .framer-1p67yjo > *, .framer-RWycy .framer-uolk9c > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-RWycy .framer-1aaio9c > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RWycy .framer-1bbnpba > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-RWycy .framer-1xdrkqk > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-RWycy[data-border=\"true\"]::after, .framer-RWycy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-RWycy.framer-83dxp0 { width: 810px; } .framer-RWycy .framer-16wy4r2, .framer-RWycy .framer-1qkxwsl { padding: 80px 30px 80px 30px; } .framer-RWycy .framer-kb02v4 { height: var(--framer-aspect-ratio-supported, 289px); } .framer-RWycy .framer-1p67yjo { padding: 30px; } .framer-RWycy .framer-uolk9c { gap: 40px; } .framer-RWycy .framer-120dmcp { grid-template-columns: repeat(2, minmax(100px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RWycy .framer-uolk9c { gap: 0px; } .framer-RWycy .framer-uolk9c > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-RWycy .framer-uolk9c > :first-child { margin-top: 0px; } .framer-RWycy .framer-uolk9c > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-RWycy.framer-83dxp0 { width: 390px; } .framer-RWycy .framer-1xhm6fv { height: 70px; } .framer-RWycy .framer-16wy4r2, .framer-RWycy .framer-1qkxwsl { padding: 60px 20px 60px 20px; } .framer-RWycy .framer-hxptc2 { flex-direction: column; } .framer-RWycy .framer-kb02v4 { aspect-ratio: unset; height: 400px; width: 100%; } .framer-RWycy .framer-1p67yjo { flex: none; padding: 30px 20px 30px 20px; width: 100%; } .framer-RWycy .framer-uolk9c { gap: 40px; } .framer-RWycy .framer-120dmcp { grid-template-columns: repeat(1, minmax(100px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RWycy .framer-hxptc2, .framer-RWycy .framer-uolk9c { gap: 0px; } .framer-RWycy .framer-hxptc2 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-RWycy .framer-hxptc2 > :first-child, .framer-RWycy .framer-uolk9c > :first-child { margin-top: 0px; } .framer-RWycy .framer-hxptc2 > :last-child, .framer-RWycy .framer-uolk9c > :last-child { margin-bottom: 0px; } .framer-RWycy .framer-uolk9c > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5214\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DC3hiqMGU\":{\"layout\":[\"fixed\",\"auto\"]},\"l6kg0pNwF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerhtuaY8raB=withCSS(Component,css,\"framer-RWycy\");export default FramerhtuaY8raB;FramerhtuaY8raB.displayName=\"Page\";FramerhtuaY8raB.defaultProps={height:5214,width:1200};addFonts(FramerhtuaY8raB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"VAGRounded Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/zxaFBZmGaFByPhhwH9ZANt11A.woff2\"},{family:\"MYuenHK SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/PysU2UF8yahmd63vS6giZHBdiCg.woff2\"}]},...SectionNavigationMainFonts,...CardPostFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"Wi4iC0u1X\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"Wi4iC0u1X\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhtuaY8raB\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DC3hiqMGU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l6kg0pNwF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5214\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "TableOverride", "Component", "props", "store", "extractAndFormatTable", "te", "contentDiv", "codeBlock", "framerCbDiv", "styleAttr", "cssVars", "pair", "key", "value", "s", "colorScheme", "borderDiv", "borderStyle", "window", "borderWidth", "borderColor", "borderRadius", "padding", "outerContainer", "innerContainer", "table", "tableHtml", "line", "row", "index", "cells", "cell", "cellIndex", "style", "ue", "observer", "p", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "SectionNavigationMainFonts", "getFonts", "tbp8pehZt_default", "RichTextTableOverride1feidkw", "withCodeBoundaryForOverrides", "RichText2", "TableOverride", "CardPostFonts", "TkVtt_hzI_default", "SectionFooterFonts", "zReXY2H00_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "WsNbU4w8w_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "YAWKiZPbE", "o02bw1L7D", "rHY_qqU3I", "SGsdxMYbx", "WKle3rGXH", "ZAhJZlDc5", "z678e2ctI", "j4NwkLFhd", "YAWKiZPbECKHARE9zx", "rHY_qqU3ICKHARE9zx", "SGsdxMYbxCKHARE9zx", "XwaMYqqLPCKHARE9zx", "idCKHARE9zx", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "textContent", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "tbp8pehZt_default", "getLoadingLazyAtYPosition", "Image2", "RichText2", "x", "Link", "ComponentPresetsProvider", "RichTextTableOverride1feidkw", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "TkVtt_hzI_default", "zReXY2H00_default", "css", "FramerhtuaY8raB", "withCSS", "htuaY8raB_default", "addFonts", "SectionNavigationMainFonts", "CardPostFonts", "SectionFooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
