{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/UIXK1WcUX02tYQTouHsC/Input.js", "ssg:https://framerusercontent.com/modules/Hqdab9v85ttyjXRrlV6s/J18kvFuOkCuy0qpvc425/FYhyiqvlK.js", "ssg:https://framerusercontent.com/modules/rkFfSIgQXvUgfleNFDaT/UtFi7hrbWbNxINkyj22F/Booking.js", "ssg:https://framerusercontent.com/modules/Ja7qDlce110WVjUpBtH2/dZe8tc3TtrU1ypMC8HIS/Chit.js", "ssg:https://framerusercontent.com/modules/DVBy0apSRfu2COF7Hv6e/OMeiMumQQi72Z8CxHlxm/FramerSearch_Ncg_2.js", "ssg:https://framerusercontent.com/modules/NeyLIvQNCUBs0EvIZ0Br/eZtnQWFkV7pGWR83SghB/Ncrlsearchable.js", "ssg:https://framerusercontent.com/modules/JKgB6IUC1i2xUvZYSU9V/sTZg29AasPvWuA8m1z7b/Ncsearchinput.js", "ssg:https://framerusercontent.com/modules/rZU2VawsgvSGFHxmeBwK/7H6zz2K0vGZxC5jvGLNd/Noresults.js", "ssg:https://framerusercontent.com/modules/gFdsLJwN5M67Ha1OhVn0/T2YWi6CoEMkd8qmo1Zb2/Payment.js", "ssg:https://framerusercontent.com/modules/zQcPqSaorHHV2yWiEBEw/Z2X8Pa8F4LRwBLX3SxRH/Phone.js", "ssg:https://framerusercontent.com/modules/a863SZV9RSybCinrLovn/KoRhsFQ64PqDfw4IxvV9/Pms.js", "ssg:https://framerusercontent.com/modules/QiPXZ1LMBktr3Q8KP01P/0q4j7Pp2b0oftN4ypno3/POS.js", "ssg:https://framerusercontent.com/modules/5sx4NuA0JUvhYII4Ofgd/N67CnmP1T5rwnYkdeEy6/ZhQdU20Fr.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "// Generated by Framer (05fbd34)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,Link,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import*as localizedValues from\"./FYhyiqvlK-0.js\";const MaterialFonts=getFonts(Material);const enabledGestures={WoHzievGj:{hover:true}};const cycleOrder=[\"WoHzievGj\"];const serializationHash=\"framer-cSY1E\";const variantClassNames={WoHzievGj:\"framer-v-1pmr7hd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={RviQuOD1D:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"WoHzievGj\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":ekmORP9ad\",webPageId:\"ZhQdU20Fr\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1pmr7hd\",className,classNames)} framer-1qz8gpw`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WoHzievGj\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,boxShadow:\"0px 1px 2px 0px rgba(0,0,0,0.25)\",opacity:.5,...style},variants:{\"WoHzievGj-hover\":{opacity:1}},...addPropertyOverrides({\"WoHzievGj-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-st7gdz-container\",layoutDependency:layoutDependency,layoutId:\"wg0xUlTaI-container\",children:/*#__PURE__*/_jsx(Material,{color:'var(--token-8a0db64c-2fa1-4b99-8f49-f010ee0a63d9, rgb(28, 28, 28)) /* {\"name\":\"Grey 900\"} */',height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowUpward\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"wg0xUlTaI\",layoutId:\"wg0xUlTaI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=['.framer-cSY1E[data-border=\"true\"]::after, .framer-cSY1E [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cSY1E.framer-1qz8gpw, .framer-cSY1E .framer-1qz8gpw { display: block; }\",\".framer-cSY1E.framer-1pmr7hd { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 8px 8px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-cSY1E .framer-st7gdz-container { flex: none; height: 60px; position: relative; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cSY1E.framer-1pmr7hd { gap: 0px; } .framer-cSY1E.framer-1pmr7hd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cSY1E.framer-1pmr7hd > :first-child { margin-left: 0px; } .framer-cSY1E.framer-1pmr7hd > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76\n * @framerIntrinsicWidth 56\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NJGHC96oO\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerFYhyiqvlK=withCSS(Component,css,\"framer-cSY1E\");export default FramerFYhyiqvlK;FramerFYhyiqvlK.displayName=\"Scroll to top\";FramerFYhyiqvlK.defaultProps={height:76,width:56};addFonts(FramerFYhyiqvlK,[...MaterialFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFYhyiqvlK\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"76\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NJGHC96oO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"56\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FYhyiqvlK.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\";// 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 withClass(Component){return props=>{props.className+=\" booking\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Booking.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\";// 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 withClass(Component){return props=>{props.className+=\" chit\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Chit.map", "/*********************************************************************************\n *                                  https://www.ncengine.com\n *                             NoCode Engine - All Rights Reserved                *\n *                                                                                *\n *  This code and software are the property of NoCode Engine. Unauthorized        *\n *  redistribution, reproduction, or modification of this code, in part or        *\n *  in whole, is strictly prohibited without prior written permission from        *\n *  NoCode Engine.                                                                *\n *                                                                                *\n *  For licensing inquiries and permissions, please contact NoCode Engine at:     *\n *  hello@ncengine.com                                                            *\n *********************************************************************************/import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import $ from\"jquery\";const[NC_SEARCH_INPUT,NC_SEARCHABLE_ITEM,NC_ITEM,NC_FILTER_INPUT,NC_FILTER_ITEM]=[\"nc-rl-searchinput\",\"nc-rl-searchable\",\"nc-item\",\"nc-rl-filterInput\",\"nc-rl-filterable\"];var SearchStrictness;(function(SearchStrictness){SearchStrictness[\"STRICT\"]=\"Strict\";SearchStrictness[\"FLEXIBLE\"]=\"Flexible\";})(SearchStrictness||(SearchStrictness={}));/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function FramerSearch(props){const itemDisplay=useRef(\"\");const[searchText,setSearchText]=useState(\"\");const[searchFilters,setSearchFilters]=useState([]);useEffect(()=>{let searchQuery=\"\";if(searchFilters.length>0){searchQuery=searchFilters.map(term=>`.${NC_FILTER_ITEM} *:contains(\"${term}\")`).join(\", \");}if(searchText){searchQuery+=`${searchQuery!==\"\"?\", \":\"\"}.${NC_SEARCHABLE_ITEM} *:contains(\"${searchText}\")`;}if(searchText===\"\"&&searchFilters.length<1){$(`.${NC_ITEM}`).css(\"display\",itemDisplay.current);return;}const found=$(searchQuery).map((i,e)=>{return e.closest(`.${NC_ITEM}`);});$(`.${NC_ITEM}`).css(\"display\",\"none\");found.css(\"display\",\"flex\");document.dispatchEvent(new Event(\"searchPerformed\"));console.log(\"Hello\");},[searchText,searchFilters]);useEffect(()=>{if(!itemDisplay.current)itemDisplay.current=$(`.${NC_ITEM}`).css(\"display\")// its been set don't overwrite\n;const query=new URLSearchParams(window.location.search);const search=query.get(\"search\");$.expr.pseudos.contains=$.expr.createPseudo(function(arg){return function(elem){return $(elem).text().toUpperCase().includes(arg.toUpperCase());};});const maybeSearchInput=$(`.${NC_SEARCH_INPUT}`);let searchInput=null;if(!maybeSearchInput.is(\"input\")){searchInput=maybeSearchInput.find(\":input\");}if(searchInput){searchInput.on(\"input\",function(){const searchText=$(this).val();setSearchText(searchText);});if(search){searchInput.val(search).trigger(\"input\");}}$(`.${NC_FILTER_INPUT}`).on(\"click\",e=>{if(e.target.type==null){return;}let filterText=\"\";if((e.target||{}).type===\"checkbox\"){filterText=e.target.value;}else{filterText=e.target.textContent;}const filters=searchFilters;const itmIndex=filters.indexOf(filterText);if(itmIndex>-1){filters.splice(itmIndex,1);setSearchFilters([...filters]);return;}setSearchFilters([filterText,...searchFilters]);});return()=>{$(\"body\").find(\"*\").off();};},[searchFilters]);return /*#__PURE__*/_jsx(\"div\",{});}FramerSearch.displayName=\"FramerSearch\";/* FramerSearch.defaultProps = {\n    paginationType: SearchStrictness.FLEXIBLE,\n}\n\naddPropertyControls(FramerSearch, {\n    strictnessMode: {\n        type: ControlType.Enum,\n        defaultValue: SearchStrictness.FLEXIBLE,\n        displaySegmentedControl: true,\n        options: [SearchStrictness.FLEXIBLE, SearchStrictness.STRICT],\n        segmentedControlDirection: \"vertical\",\n    },\n}) */// Styles are written in object syntax\n// https://react.dev/reference/react-dom/components/common#usage\nconst boxStyle={margin:25,width:125,height:125,borderRadius:25};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSearch\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerSearch_Ncg_2.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\";// 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 withClass(Component){return props=>{props.className+=\" nc-rl-searchable\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}export function withClass2(Component){return props=>{props.className+=\" nc-rl-searchinput\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClass2\":{\"type\":\"reactHoc\",\"name\":\"withClass2\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ncrlsearchable.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\";// 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 withClass(Component){return props=>{props.className+=\" nc-rl-searchinput\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ncsearchinput.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\";// 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 withClass(Component){return props=>{props.className+=\" noresults\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props,style:{display:\"none\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Noresults.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\";// 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 withClass(Component){return props=>{props.className+=\" payment\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Payment.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\";// 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 withClass(Component){return props=>{props.className+=\" phone\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phone.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\";// 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 withClass(Component){return props=>{props.className+=\" pms\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pms.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\";// 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 withClass(Component){return props=>{props.className+=\" pos\"// Remember to add a space\n;return /*#__PURE__*/_jsx(Component,{...props});};}export function CheckAndHide(){const checkAndHide=()=>{const posDivs=document.querySelectorAll(\".pos\");posDivs.forEach(posDiv=>{const ncItems=posDiv.querySelectorAll(\".nc-item\");let allHidden=true;ncItems.forEach(ncItem=>{if(ncItem.style.display!==\"none\"){allHidden=false;}});if(allHidden){posDiv.style.display=\"none\";}});};checkAndHide();return null// This override doesn't render anything, just performs the check\n;}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withCheckAndHide(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...CheckAndHide(props)});};}withCheckAndHide.displayName=\"CheckAndHide\";\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CheckAndHide\":{\"type\":\"override\",\"name\":\"CheckAndHide\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCheckAndHide\":{\"type\":\"reactHoc\",\"name\":\"withCheckAndHide\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./POS.map", "// Generated by Framer (18b201b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useQueryData,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Logo from\"https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js\";import NavbarFilledButton from\"https://framerusercontent.com/modules/JnfsyczDV1qiORQKEWbi/YUtBirtYm8qbW0PeqyUw/pXzv0MyWd.js\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/UIXK1WcUX02tYQTouHsC/Input.js\";import Link1 from\"#framer/local/canvasComponent/CrAbj2H4F/CrAbj2H4F.js\";import ButtonLarge from\"#framer/local/canvasComponent/EbjdIbRqO/EbjdIbRqO.js\";import ScrollToTop from\"#framer/local/canvasComponent/FYhyiqvlK/FYhyiqvlK.js\";import BurgerMenu from\"#framer/local/canvasComponent/IXulyNxE6/IXulyNxE6.js\";import NavbarButton from\"#framer/local/canvasComponent/xuSZEY7yY/xuSZEY7yY.js\";import{withClass as withClass6}from\"#framer/local/codeFile/EYr3Qog/Booking.js\";import{withClass as withClass7}from\"#framer/local/codeFile/IC93P_e/Chit.js\";import FramerSearch from\"#framer/local/codeFile/IpfloEd/FramerSearch_Ncg_2.js\";import{withStickyNavbar}from\"#framer/local/codeFile/mef30pT/Navbar_Colot.js\";import{withClass as withClass2}from\"#framer/local/codeFile/HQpVwmz/Ncitem.js\";import{withClass as withClass1}from\"#framer/local/codeFile/bgqoHGu/Ncrlsearchable.js\";import{withClass}from\"#framer/local/codeFile/IFwnYTI/Ncsearchinput.js\";import{withClass as withClass9}from\"#framer/local/codeFile/YFVQdQz/Noresults.js\";import{withClass as withClass5}from\"#framer/local/codeFile/KZzgr46/Payment.js\";import{withClass as withClass4}from\"#framer/local/codeFile/tOZVAdm/Phone.js\";import{withClass as withClass8}from\"#framer/local/codeFile/tHLhFZM/Pms.js\";import{withClass as withClass3}from\"#framer/local/codeFile/Rwv7Jy2/POS.js\";import IntegrationPages from\"#framer/local/collection/tbXop2dFR/tbXop2dFR.js\";import*as sharedStyle from\"#framer/local/css/GDKUOfh3f/GDKUOfh3f.js\";import*as sharedStyle1 from\"#framer/local/css/h5nu6up7i/h5nu6up7i.js\";import*as sharedStyle2 from\"#framer/local/css/MiTP6YosN/MiTP6YosN.js\";import metadataProvider from\"#framer/local/webPageMetadata/ZhQdU20Fr/ZhQdU20Fr.js\";const NavbarButtonFonts=getFonts(NavbarButton);const NavbarFilledButtonFonts=getFonts(NavbarFilledButton);const BurgerMenuFonts=getFonts(BurgerMenu);const MotionDivWithStickyNavbar18mn1gi=withCodeBoundaryForOverrides(motion.div,{nodeId:\"OQOl6wwM4\",override:withStickyNavbar,scopeId:\"ZhQdU20Fr\"});const ButtonLargeFonts=getFonts(ButtonLarge);const InputFonts=getFonts(Input);const MotionAWithClasshjucul=withCodeBoundaryForOverrides(motion.a,{nodeId:\"KxmJ6aBpt\",override:withClass,scopeId:\"ZhQdU20Fr\"});const MaterialFonts=getFonts(Material);const LogoFonts=getFonts(Logo);const RichTextWithClass110nhfr1=withCodeBoundaryForOverrides(RichText,{nodeId:\"PKkVS2CVa\",override:withClass1,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass21q63kuq=withCodeBoundaryForOverrides(motion.div,{nodeId:\"fdWLcmuuq\",override:withClass2,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass35vep79=withCodeBoundaryForOverrides(motion.div,{nodeId:\"xrO8z0zsJ\",override:withClass3,scopeId:\"ZhQdU20Fr\"});const RichTextWithClass1154z62d=withCodeBoundaryForOverrides(RichText,{nodeId:\"rmvCs8dp2\",override:withClass1,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass210d64x8=withCodeBoundaryForOverrides(motion.div,{nodeId:\"RFumpa_Jf\",override:withClass2,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass41xkd8h4=withCodeBoundaryForOverrides(motion.div,{nodeId:\"CMsuab87E\",override:withClass4,scopeId:\"ZhQdU20Fr\"});const RichTextWithClass115km7q7=withCodeBoundaryForOverrides(RichText,{nodeId:\"kWufDbnLH\",override:withClass1,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass2w0aj96=withCodeBoundaryForOverrides(motion.div,{nodeId:\"i7b058hp8\",override:withClass2,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass58ttuiq=withCodeBoundaryForOverrides(motion.div,{nodeId:\"lSUSD6BT7\",override:withClass5,scopeId:\"ZhQdU20Fr\"});const RichTextWithClass16tua3m=withCodeBoundaryForOverrides(RichText,{nodeId:\"ApmqK79bW\",override:withClass1,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass2ft9qtn=withCodeBoundaryForOverrides(motion.div,{nodeId:\"w0zyOAH2F\",override:withClass2,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass6rm6pt3=withCodeBoundaryForOverrides(motion.div,{nodeId:\"Z7lE0p5R6\",override:withClass6,scopeId:\"ZhQdU20Fr\"});const RichTextWithClass1128tctl=withCodeBoundaryForOverrides(RichText,{nodeId:\"aTYWbVEm9\",override:withClass1,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass21dgjf9t=withCodeBoundaryForOverrides(motion.div,{nodeId:\"bPlDIaA7Q\",override:withClass2,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass7d4mmca=withCodeBoundaryForOverrides(motion.div,{nodeId:\"Lms0iVGaD\",override:withClass7,scopeId:\"ZhQdU20Fr\"});const RichTextWithClass11k3bfkt=withCodeBoundaryForOverrides(RichText,{nodeId:\"lVVmWPqa2\",override:withClass1,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass27j8se3=withCodeBoundaryForOverrides(motion.div,{nodeId:\"AvzSCZNRY\",override:withClass2,scopeId:\"ZhQdU20Fr\"});const MotionDivWithClass8kv6w13=withCodeBoundaryForOverrides(motion.div,{nodeId:\"joLWgpnkz\",override:withClass8,scopeId:\"ZhQdU20Fr\"});const ScrollToTopFonts=getFonts(ScrollToTop);const MotionDivWithFX=withFX(motion.div);const MotionDivWithClass914ckuas=withCodeBoundaryForOverrides(motion.div,{nodeId:\"lYGdhHm71\",override:withClass9,scopeId:\"ZhQdU20Fr\"});const FramerSearchFonts=getFonts(FramerSearch);const Link1Fonts=getFonts(Link1);const breakpoints={qoZrxZ_J0:\"(min-width: 654px) and (max-width: 1151px)\",Rj5d_naz1:\"(max-width: 653px)\",y34GfTI5j:\"(min-width: 1152px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Cv1WE\";const variantClassNames={qoZrxZ_J0:\"framer-v-dtfsg4\",Rj5d_naz1:\"framer-v-1pqbf5f\",y34GfTI5j:\"framer-v-q2jlj4\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-150};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"y34GfTI5j\",Phone:\"Rj5d_naz1\",Tablet:\"qoZrxZ_J0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"y34GfTI5j\"};};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{style,className,layoutId,variant,tUpJy8zvIkU2Tokiep,fDNYos32CkU2Tokiep,Ct7b816B0kU2Tokiep,Gt9lCSqt7kU2Tokiep,idkU2Tokiep,tUpJy8zvII4fcUlITL,fDNYos32CI4fcUlITL,Ct7b816B0I4fcUlITL,AUz73pejrI4fcUlITL,idI4fcUlITL,tUpJy8zvIp2QlGBEgq,fDNYos32Cp2QlGBEgq,Ct7b816B0p2QlGBEgq,AUz73pejrp2QlGBEgq,idp2QlGBEgq,FeCjtkLpONjkbWcO7o,fDNYos32CNjkbWcO7o,Ct7b816B0NjkbWcO7o,AUz73pejrNjkbWcO7o,tUpJy8zvINjkbWcO7o,idNjkbWcO7o,tUpJy8zvIlP1LRvbZH,fDNYos32ClP1LRvbZH,Ct7b816B0lP1LRvbZH,AUz73pejrlP1LRvbZH,idlP1LRvbZH,tUpJy8zvIUzZ7dtAW_,fDNYos32CUzZ7dtAW_,Ct7b816B0UzZ7dtAW_,AUz73pejrUzZ7dtAW_,idUzZ7dtAW_,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const tap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"qoZrxZ_J0\",\"Rj5d_naz1\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Rj5d_naz1\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"qoZrxZ_J0\",\"Rj5d_naz1\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"qoZrxZ_J0\")return false;return true;};const elementId=useRouteElementId(\"kncpBUgDH\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"ekmORP9ad\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"xrO8z0zsJ\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"CMsuab87E\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"lSUSD6BT7\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"Z7lE0p5R6\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"Lms0iVGaD\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"joLWgpnkz\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"y34GfTI5j\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-q2jlj4\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(MotionDivWithStickyNavbar18mn1gi,{className:\"framer-18mn1gi\",\"data-framer-name\":\"Navbar/Navbar\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15kfl3s\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t9tyhj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7qyazp\",\"data-framer-name\":\"Logo / Cactus / Eat Logo\",children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Logo\",motionChild:true,nodeId:\"DlAizpwzE\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1w83ygm framer-u3qtyo\",\"data-framer-name\":\"Symbols\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 24\"><g><path d=\"M 9.771 20.193 C 10.383 20.193 10.922 20.124 11.387 19.988 C 11.852 19.851 12.268 19.683 12.636 19.484 C 13.003 19.285 13.322 19.067 13.591 18.83 C 13.86 18.594 14.105 18.376 14.325 18.177 C 14.619 18.55 14.925 19.029 15.244 19.614 C 15.562 20.199 15.721 20.678 15.721 21.051 C 15.721 21.599 15.415 22.096 14.803 22.544 C 14.289 22.942 13.56 23.285 12.617 23.571 C 11.675 23.857 10.567 24 9.293 24 C 8.142 24 7.01 23.851 5.895 23.552 C 4.781 23.253 3.79 22.731 2.92 21.984 C 2.051 21.238 1.347 20.236 0.808 18.98 C 0.269 17.723 0 16.137 0 14.221 C 0 12.653 0.239 11.303 0.716 10.171 C 1.194 9.039 1.83 8.1 2.626 7.353 C 3.422 6.607 4.322 6.059 5.326 5.711 C 6.33 5.362 7.359 5.188 8.412 5.188 C 9.783 5.188 10.946 5.406 11.901 5.841 C 12.856 6.277 13.634 6.862 14.234 7.596 C 14.834 8.33 15.268 9.17 15.538 10.115 C 15.807 11.061 15.942 12.056 15.942 13.101 L 15.942 13.624 C 15.942 13.823 15.936 14.034 15.923 14.258 C 15.911 14.482 15.899 14.7 15.887 14.911 C 15.874 15.123 15.856 15.291 15.832 15.415 L 5.032 15.415 C 5.13 16.784 5.547 17.922 6.281 18.83 C 7.016 19.739 8.179 20.193 9.771 20.193 Z M 11.424 12.616 C 11.424 11.421 11.197 10.451 10.744 9.705 C 10.291 8.958 9.477 8.585 8.301 8.585 C 7.273 8.585 6.465 8.939 5.877 9.649 C 5.289 10.358 4.996 11.347 4.996 12.616 Z M 33.146 19.036 C 33.146 20.977 33.428 22.407 33.991 23.328 C 33.55 23.502 33.14 23.627 32.761 23.701 C 32.381 23.776 31.983 23.813 31.567 23.813 C 30.685 23.813 30.018 23.639 29.565 23.291 C 29.112 22.942 28.824 22.445 28.702 21.798 C 28.163 22.37 27.453 22.855 26.571 23.253 C 25.69 23.652 24.612 23.851 23.339 23.851 C 22.678 23.851 22.016 23.757 21.355 23.571 C 20.694 23.384 20.094 23.079 19.555 22.656 C 19.017 22.233 18.576 21.667 18.233 20.958 C 17.89 20.249 17.719 19.384 17.719 18.364 C 17.719 17.095 18.019 16.062 18.619 15.266 C 19.219 14.47 19.972 13.841 20.878 13.381 C 21.784 12.921 22.763 12.603 23.816 12.429 C 24.869 12.255 25.837 12.143 26.718 12.093 C 27.012 12.068 27.3 12.056 27.581 12.056 L 28.371 12.056 L 28.371 11.384 C 28.371 10.439 28.12 9.767 27.618 9.369 C 27.116 8.97 26.302 8.771 25.175 8.771 C 24.122 8.771 23.186 8.946 22.365 9.294 C 21.545 9.642 20.743 10.04 19.959 10.488 C 19.617 10.065 19.341 9.599 19.133 9.089 C 18.925 8.579 18.821 8.199 18.821 7.95 C 18.821 7.627 19.011 7.297 19.39 6.961 C 19.77 6.625 20.29 6.327 20.951 6.065 C 21.612 5.804 22.371 5.593 23.229 5.431 C 24.086 5.269 24.992 5.188 25.947 5.188 C 27.269 5.188 28.389 5.325 29.308 5.599 C 30.226 5.872 30.973 6.295 31.548 6.868 C 32.124 7.44 32.534 8.156 32.779 9.014 C 33.024 9.872 33.146 10.874 33.146 12.019 Z M 28.445 14.706 L 27.93 14.706 C 27.759 14.706 27.587 14.719 27.416 14.743 C 26.804 14.793 26.198 14.874 25.598 14.986 C 24.998 15.098 24.465 15.272 24 15.509 C 23.535 15.745 23.155 16.062 22.861 16.46 C 22.567 16.859 22.42 17.369 22.42 17.991 C 22.42 18.687 22.616 19.278 23.008 19.764 C 23.4 20.249 24.061 20.491 24.992 20.491 C 25.457 20.491 25.898 20.429 26.314 20.305 C 26.73 20.18 27.098 20.019 27.416 19.82 C 27.734 19.621 27.985 19.403 28.169 19.166 C 28.353 18.93 28.445 18.712 28.445 18.513 Z M 37.348 20.678 C 37.176 20.18 37.066 19.658 37.017 19.11 C 36.968 18.563 36.944 18.016 36.944 17.468 L 36.944 0.149 L 37.495 0.075 C 37.666 0.05 37.85 0.031 38.046 0.019 C 38.241 0.006 38.437 0 38.633 0 C 39.025 0 39.417 0.037 39.809 0.112 C 40.201 0.187 40.556 0.336 40.874 0.56 C 41.192 0.784 41.449 1.089 41.645 1.474 C 41.841 1.86 41.939 2.364 41.939 2.986 L 41.939 5.599 L 47.082 5.599 L 47.082 9.406 L 41.939 9.406 L 41.939 17.393 C 41.939 19.135 42.637 20.006 44.033 20.006 C 44.376 20.006 44.7 19.95 45.006 19.838 C 45.312 19.726 45.594 19.602 45.851 19.465 C 46.108 19.328 46.323 19.185 46.494 19.036 C 46.665 18.887 46.788 18.774 46.861 18.7 C 47.229 19.247 47.51 19.72 47.706 20.118 C 47.902 20.516 48 20.89 48 21.238 C 48 21.561 47.871 21.879 47.614 22.19 C 47.357 22.501 46.996 22.787 46.531 23.048 C 46.065 23.309 45.502 23.521 44.841 23.683 C 44.18 23.845 43.457 23.925 42.674 23.925 C 41.131 23.925 39.943 23.627 39.111 23.029 C 38.278 22.432 37.691 21.648 37.348 20.678 Z\" fill=\"rgb(18,136,73)\"></path></g></svg>',svgContentId:12512707346,withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cm25iz hidden-dtfsg4 hidden-1pqbf5f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13xi7uq-container\",nodeId:\"VTyVeTAlV\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"VTyVeTAlV\",laHalSIS1:true,layoutId:\"VTyVeTAlV\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Features\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y3hg7l-container\",nodeId:\"UHS1UZcje\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"UHS1UZcje\",laHalSIS1:true,layoutId:\"UHS1UZcje\",LrOIOnBN1:\"VgrAs1tPs\",mkfwPodue:\"Customers\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9tns2p-container\",nodeId:\"jhCWo2W53\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:false,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"jhCWo2W53\",laHalSIS1:false,layoutId:\"jhCWo2W53\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"How it works?\",nBcXet_2_:\"https://restaurant.eatapp.co/demo?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=How+it+Works\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ltwdao-container\",nodeId:\"b7Qv6Dv4z\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"b7Qv6Dv4z\",laHalSIS1:true,layoutId:\"b7Qv6Dv4z\",LrOIOnBN1:\"i7gobTYg5\",mkfwPodue:\"Resources\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13h77k-container\",nodeId:\"L8Z1JEnGE\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:false,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"L8Z1JEnGE\",laHalSIS1:false,layoutId:\"L8Z1JEnGE\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Pricing\",nBcXet_2_:\"https://restaurant.eatapp.co/pricing?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Pricing\",variant:\"DRVuJLtfM\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xy29i1\",\"data-framer-name\":\"Frame 686\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rf9dgq-container\",nodeId:\"V3U3T_r3i\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:false,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"V3U3T_r3i\",laHalSIS1:false,layoutId:\"V3U3T_r3i\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Log in\",nBcXet_2_:\"https://app.eatapp.co/?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Log+in\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l6tvbk-container hidden-1pqbf5f\",isModuleExternal:true,nodeId:\"tNS3GJ_Wa\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(NavbarFilledButton,{height:\"100%\",id:\"tNS3GJ_Wa\",layoutId:\"tNS3GJ_Wa\",link:\"https://restaurant.eatapp.co/schedule-free-eat-app-consultation\",title:\"Request Demo\",variant:\"OtWkfHntQ\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yqnbp8-container hidden-1pqbf5f\",isModuleExternal:true,nodeId:\"cE0ETXwir\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(NavbarFilledButton,{height:\"100%\",id:\"cE0ETXwir\",layoutId:\"cE0ETXwir\",link:\"https://admin.eatapp.co/sign_up?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Try+for+free\",title:\"Try Eat App\",variant:\"ybKfMI6e7\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-eeuxfb-container hidden-q2jlj4\",id:\"eeuxfb\",nodeId:\"kgcOxHdXs\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:[/*#__PURE__*/_jsx(BurgerMenu,{height:\"100%\",id:\"kgcOxHdXs\",layoutId:\"kgcOxHdXs\",style:{height:\"100%\",width:\"100%\"},tap:tap3bnx0g({overlay}),variant:\"Rbk5jQv1f\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qoZrxZ_J0:{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}}}},children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1oyoars\"),\"data-framer-portal-id\":\"eeuxfb\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"OXgJ_Stbk\")}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qoZrxZ_J0:{animate:animation1,exit:animation,initial:animation2,style:{transformPerspective:1200}},Rj5d_naz1:{animate:animation1,exit:animation,initial:animation2,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-ar9usq\"),\"data-framer-name\":\"Frame 2608250\",\"data-framer-portal-id\":\"eeuxfb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15mdrdb\",\"data-framer-name\":\"Frame 2608247\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tctvkg-container\",inComponentSlot:true,nodeId:\"Syf4b_9OD\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qoZrxZ_J0:{LrOIOnBN1:\"MKJI2ztRh\"},Rj5d_naz1:{LrOIOnBN1:\"MKJI2ztRh\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"Syf4b_9OD\",laHalSIS1:true,layoutId:\"Syf4b_9OD\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Features\",variant:\"E2lV3XE_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g76ur8-container\",inComponentSlot:true,nodeId:\"v0HSpaV4W\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qoZrxZ_J0:{nBcXet_2_:\"https://restaurant.eatapp.co/demo?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=How+it+Works\"},Rj5d_naz1:{nBcXet_2_:\"https://restaurant.eatapp.co/demo?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=How+it+Works\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:false,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"v0HSpaV4W\",laHalSIS1:true,layoutId:\"v0HSpaV4W\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"How it works?\",variant:\"E2lV3XE_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qc727x-container\",inComponentSlot:true,nodeId:\"vzDfriENu\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qoZrxZ_J0:{LrOIOnBN1:\"YMXiF8aKY\"},Rj5d_naz1:{LrOIOnBN1:\"YMXiF8aKY\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"vzDfriENu\",laHalSIS1:true,layoutId:\"vzDfriENu\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Customers\",variant:\"E2lV3XE_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jn80dm-container\",inComponentSlot:true,nodeId:\"FTy9vGwXS\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qoZrxZ_J0:{LrOIOnBN1:\"srIahT4c1\"},Rj5d_naz1:{LrOIOnBN1:\"srIahT4c1\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"FTy9vGwXS\",laHalSIS1:true,layoutId:\"FTy9vGwXS\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Resources\",variant:\"E2lV3XE_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xjeuon-container\",inComponentSlot:true,nodeId:\"kLZsBKFrL\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qoZrxZ_J0:{DiE_lzCqN:false,nBcXet_2_:\"https://restaurant.eatapp.co/pricing?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Pricing\"},Rj5d_naz1:{DiE_lzCqN:false,LrOIOnBN1:\"srIahT4c1\",nBcXet_2_:\"https://restaurant.eatapp.co/pricing?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Pricing\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"kLZsBKFrL\",laHalSIS1:true,layoutId:\"kLZsBKFrL\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Pricing\",variant:\"E2lV3XE_W\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-61im0x hidden-dtfsg4\",\"data-framer-name\":\"Frame 686\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3e76gx\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-text-color\":\"rgba(28, 28, 28, 1)\"},children:\"Request demo\"})})}),className:\"framer-f4xjl9\",\"data-framer-name\":\"Button\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bc9y2e\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Try for free\"})})}),className:\"framer-1trh19f\",\"data-framer-name\":\"Button\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),getContainer())})})]})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k42dd5\",\"data-framer-name\":\"USP\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d0d6yv\",\"data-framer-name\":\"Frame 39306\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k40jhc\",\"data-framer-name\":\"Frame 39294\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Boost Revenue with Eat App integrations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Boost Revenue with Eat App integrations\"})}),className:\"framer-yhku7g\",\"data-framer-name\":\"Boost revenue and streamline operations with integrations\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d8jns4\",\"data-framer-name\":\"Frame 39304\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-tz97yc\",\"data-styles-preset\":\"GDKUOfh3f\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Get more bookings via Instagram, Facebook, Google. \"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Track guest spend and reward for loyalty with our POS integrations. \"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Collect prepayments with our Payments Integration. \"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Know who's calling before you pick up the Phone with our phone integration.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Match guest stay details against restaurant reservations with our Hotel PMS integration.\"})})]})}),className:\"framer-15s89la\",\"data-framer-name\":\"Supercharge Eat App: enhance revenue, efficiency, staff workflows via social media, Google, POS, payments, phones, hotel PMS.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-103n5q-container\",nodeId:\"DEXq2sufZ\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(ButtonLarge,{FUt_CdV5_:\"https://admin.eatapp.co/sign_up?utm_source=Integrations&utm_medium=Hero&utm_campaign=eatapp.co&utm_content=Start+for+free\",height:\"100%\",id:\"DEXq2sufZ\",layoutId:\"DEXq2sufZ\",nlJMHYalf:\"Try Eat App for free\",q04PyOp5x:\"var(--token-9e5a84ad-8927-45d6-aa15-4ddcab981904, rgb(36, 169, 95))\",style:{width:\"100%\"},TDdoU7eHm:true,tU60Onr8w:\"var(--token-bdb78e69-2b22-4efc-bac1-0749eeabd9be, rgb(9, 119, 62))\",variant:\"rpJfo7ONV\",width:\"100%\",XAs4b75Hx:\"var(--token-f474097e-d954-444b-a4b9-4dae117d512b, rgb(18, 136, 73))\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-hzg349 hidden-dtfsg4 hidden-1pqbf5f\",\"data-framer-name\":\"Frame 39305\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kb0m7u\",\"data-framer-name\":\"Background%20(3).svg\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1844,pixelWidth:1512,positionX:\"center\",positionY:\"center\",sizes:\"429px\",src:\"https://framerusercontent.com/images/FShQexHmcntdvxM12mYnHX2lyc.png\",srcSet:\"https://framerusercontent.com/images/FShQexHmcntdvxM12mYnHX2lyc.png?scale-down-to=1024 839w,https://framerusercontent.com/images/FShQexHmcntdvxM12mYnHX2lyc.png 1512w\"},className:\"framer-10mml81\",\"data-framer-name\":\"Rectangle\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xmbblm\",\"data-border\":true,\"data-framer-name\":\"Links\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tz97yc\",\"data-styles-preset\":\"GDKUOfh3f\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":xrO8z0zsJ\",webPageId:\"ZhQdU20Fr\"},motionChild:true,nodeId:\"JbVuOPmJk\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"POS Integrations\"})})})}),className:\"framer-ljd2qm\",\"data-framer-name\":\"POS\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tz97yc\",\"data-styles-preset\":\"GDKUOfh3f\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CMsuab87E\",webPageId:\"ZhQdU20Fr\"},motionChild:true,nodeId:\"Used5t3oA\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Phone Integrations\"})})})}),className:\"framer-v0h2bk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tz97yc\",\"data-styles-preset\":\"GDKUOfh3f\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":lSUSD6BT7\",webPageId:\"ZhQdU20Fr\"},motionChild:true,nodeId:\"BETgmkwSy\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Payment Integrations\"})})})}),className:\"framer-17yoiip\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tz97yc\",\"data-styles-preset\":\"GDKUOfh3f\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Z7lE0p5R6\",webPageId:\"ZhQdU20Fr\"},motionChild:true,nodeId:\"tByILkq0F\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Booking Channels\"})})})}),className:\"framer-libdoo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tz97yc\",\"data-styles-preset\":\"GDKUOfh3f\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Lms0iVGaD\",webPageId:\"ZhQdU20Fr\"},motionChild:true,nodeId:\"EU5mfgtV6\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Chit Printer\"})})})}),className:\"framer-1fpv70j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tz97yc\",\"data-styles-preset\":\"GDKUOfh3f\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":joLWgpnkz\",webPageId:\"ZhQdU20Fr\"},motionChild:true,nodeId:\"kA2IqD7Yt\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"PMS Integrations\"})})})}),className:\"framer-109cgw9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qb64ep\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qoZrxZ_J0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8v1pm2\",\"data-styles-preset\":\"MiTP6YosN\",children:\"Search among hundreds of integrations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8v1pm2\",\"data-styles-preset\":\"MiTP6YosN\",children:\"Search among hundreds of providers\"})}),className:\"framer-g5f7m8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":ekmORP9ad\",webPageId:\"ZhQdU20Fr\"},motionChild:true,nodeId:\"KxmJ6aBpt\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithClasshjucul,{className:\"framer-hjucul framer-u3qtyo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2gw38l-container\",isModuleExternal:true,nodeId:\"QmP59eCSC\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"rgb(51, 51, 51)\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:false,widthWhenDocked:100},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"24px\"},formsparkID:\"\",gap:10,getwaitlistAPI:\"\",height:\"100%\",id:\"QmP59eCSC\",input:{borderRadius:8,color:\"var(--token-8a0db64c-2fa1-4b99-8f49-f010ee0a63d9, rgb(28, 28, 28))\",fill:\"rgb(235, 235, 235)\",fixedHeight:50,height:true,padding:15,paddingBottom:8,paddingLeft:16,paddingPerSide:true,paddingRight:16,paddingTop:8,placeholder:\"Search for an integration\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"QmP59eCSC\",loopsID:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",redirectAs:\"link\",service:\"loops\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-828pho\",children:/*#__PURE__*/_jsx(MotionDivWithClass35vep79,{className:\"framer-5vep79\",\"data-framer-name\":\"Content\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rdwg8f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-50wbvo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GSbIbBPi0\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bba4ebff-6f11-45b1-a778-b58ebe5e9c87, rgb(36, 169, 95))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PointOfSale\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"GSbIbBPi0\",layoutId:\"GSbIbBPi0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"POS Integrations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"POS Integrations\"})}),className:\"framer-14dzuf4\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qoZrxZ_J0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Eat App's POS Integration works in the background connecting ticket and orders to guests. We enrich your guest data across the entire customer journey - from first visit to repeat guest.\"})}),fonts:[\"Inter\"]},Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Eat App's POS Integration works in the background connecting ticket and orders to guests. We enrich your guest data across the entire customer journey - from first visit to repeat guest.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Eat App's POS Integration works in the background \",/*#__PURE__*/_jsx(\"strong\",{children:\"connecting orders to guests\"}),\". We enrich your guest data across the entire customer journey - from first visit to repeat guest.\",/*#__PURE__*/_jsxs(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:[\" free with our Pro plan* \",/*#__PURE__*/_jsx(\"em\",{children:\"(for participating POS partners)\"})]})]})}),className:\"framer-1i4f9yw\",fonts:[\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-barxo1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kU2Tokiep\",data:IntegrationPages,type:\"Collection\"},select:[{collection:\"kU2Tokiep\",name:\"tUpJy8zvI\",type:\"Identifier\"},{collection:\"kU2Tokiep\",name:\"fDNYos32C\",type:\"Identifier\"},{collection:\"kU2Tokiep\",name:\"Ct7b816B0\",type:\"Identifier\"},{collection:\"kU2Tokiep\",name:\"Gt9lCSqt7\",type:\"Identifier\"},{collection:\"kU2Tokiep\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"kU2Tokiep\",name:\"oRVp9Y17W\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"POS\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({Ct7b816B0:Ct7b816B0kU2Tokiep,fDNYos32C:fDNYos32CkU2Tokiep,Gt9lCSqt7:Gt9lCSqt7kU2Tokiep,id:idkU2Tokiep,tUpJy8zvI:tUpJy8zvIkU2Tokiep},index)=>{tUpJy8zvIkU2Tokiep??=\"\";fDNYos32CkU2Tokiep??=\"\";Ct7b816B0kU2Tokiep??=\"\";Gt9lCSqt7kU2Tokiep??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kU2Tokiep-${idkU2Tokiep}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tUpJy8zvI:tUpJy8zvIkU2Tokiep},children:/*#__PURE__*/_jsx(MotionDivWithClass21q63kuq,{className:\"framer-1q63kuq\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tUpJy8zvI:tUpJy8zvIkU2Tokiep},webPageId:\"iFy1zywz2\"},motionChild:true,nodeId:\"pVRLVvrdB\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tc57ib framer-u3qtyo\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c25dxl\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-191gy5p\",\"data-border\":true,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y0gbwt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gztryz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pvhlyb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"l0eGeL0Fs\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Logo,{company:\"Framer\",height:\"100%\",id:\"l0eGeL0Fs\",isSearch:false,layoutId:\"l0eGeL0Fs\",radius:100,srcType:\"URL\",srcUrl:fDNYos32CkU2Tokiep,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithClass110nhfr1,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8v1pm2\",\"data-styles-preset\":\"MiTP6YosN\",style:{\"--framer-text-color\":\"var(--token-8a0db64c-2fa1-4b99-8f49-f010ee0a63d9, rgb(28, 28, 28))\"},children:\"Company\"})}),className:\"framer-10nhfr1\",\"data-framer-name\":\"Company\",fonts:[\"Inter\"],text:Ct7b816B0kU2Tokiep,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ojkwvi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tz97yc\",\"data-styles-preset\":\"GDKUOfh3f\",style:{\"--framer-text-color\":\"var(--token-4f722d51-56a2-425b-b75e-e0fb5498f26a, rgb(85, 85, 85))\"},children:\"Enrich your guest data across the entire customer journey - from first visit to repeat guest.\"})}),className:\"framer-14gl20y\",\"data-framer-name\":\"Integration Type One Liner\",fonts:[\"Inter\"],text:Gt9lCSqt7kU2Tokiep,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})})})})},idkU2Tokiep);})})})})})]})})}),/*#__PURE__*/_jsx(MotionDivWithClass41xkd8h4,{className:\"framer-1xkd8h4\",\"data-framer-name\":\"Content\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1psonz1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dtp07k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MOzmNEkbV\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bba4ebff-6f11-45b1-a778-b58ebe5e9c87, rgb(36, 169, 95))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Phone\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"MOzmNEkbV\",layoutId:\"MOzmNEkbV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Phone Integrations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Phone Integrations\"})}),className:\"framer-16p9gln\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"With phone integration you see all your guest data before you answer so you can deal with requests faster and deliver a personalized experience at first contact.\"})}),className:\"framer-17238ot\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.main,{className:\"framer-8fh0y\",\"data-framer-name\":\"POS\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"I4fcUlITL\",data:IntegrationPages,type:\"Collection\"},select:[{collection:\"I4fcUlITL\",name:\"tUpJy8zvI\",type:\"Identifier\"},{collection:\"I4fcUlITL\",name:\"fDNYos32C\",type:\"Identifier\"},{collection:\"I4fcUlITL\",name:\"Ct7b816B0\",type:\"Identifier\"},{collection:\"I4fcUlITL\",name:\"AUz73pejr\",type:\"Identifier\"},{collection:\"I4fcUlITL\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"I4fcUlITL\",name:\"oRVp9Y17W\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Phone\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({AUz73pejr:AUz73pejrI4fcUlITL,Ct7b816B0:Ct7b816B0I4fcUlITL,fDNYos32C:fDNYos32CI4fcUlITL,id:idI4fcUlITL,tUpJy8zvI:tUpJy8zvII4fcUlITL},index1)=>{tUpJy8zvII4fcUlITL??=\"\";fDNYos32CI4fcUlITL??=\"\";Ct7b816B0I4fcUlITL??=\"\";AUz73pejrI4fcUlITL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`I4fcUlITL-${idI4fcUlITL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tUpJy8zvI:tUpJy8zvII4fcUlITL},children:/*#__PURE__*/_jsx(MotionDivWithClass210d64x8,{className:\"framer-10d64x8\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tUpJy8zvI:tUpJy8zvII4fcUlITL},webPageId:\"iFy1zywz2\"},motionChild:true,nodeId:\"eUZdpIlFH\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7en5at framer-u3qtyo\",\"data-framer-name\":\"Integrations/Card Copy\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hp10hw\",\"data-border\":true,\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gvyim9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oqYLDX0Yo\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Logo,{company:Ct7b816B0I4fcUlITL,height:\"100%\",id:\"oqYLDX0Yo\",isSearch:false,layoutId:\"oqYLDX0Yo\",radius:100,srcType:\"URL\",srcUrl:fDNYos32CI4fcUlITL,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithClass1154z62d,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"The Importance of Color\"})}),className:\"framer-154z62d\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-600\"],text:Ct7b816B0I4fcUlITL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Content\"})}),className:\"framer-12h65sh\",\"data-framer-name\":\"Date\",fonts:[\"GF;Inter-500\"],text:AUz73pejrI4fcUlITL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-80ahlm\",\"data-framer-name\":\"Preload\"})]})})})})})},idI4fcUlITL);})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithClass58ttuiq,{className:\"framer-8ttuiq\",\"data-framer-name\":\"Content\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1liao05\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tg6ayh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qv9ex3cUB\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bba4ebff-6f11-45b1-a778-b58ebe5e9c87, rgb(36, 169, 95))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Payment\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"qv9ex3cUB\",layoutId:\"qv9ex3cUB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Payment Integrations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Payment Integrations\"})}),className:\"framer-ivacrg\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"No more juggling external payment systems with deep payment integration across all your guests and reservations - easily take upfront payments on reservations.\"})}),className:\"framer-1y58tek\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.main,{className:\"framer-4n8330\",\"data-framer-name\":\"POS\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"p2QlGBEgq\",data:IntegrationPages,type:\"Collection\"},select:[{collection:\"p2QlGBEgq\",name:\"tUpJy8zvI\",type:\"Identifier\"},{collection:\"p2QlGBEgq\",name:\"fDNYos32C\",type:\"Identifier\"},{collection:\"p2QlGBEgq\",name:\"Ct7b816B0\",type:\"Identifier\"},{collection:\"p2QlGBEgq\",name:\"AUz73pejr\",type:\"Identifier\"},{collection:\"p2QlGBEgq\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"p2QlGBEgq\",name:\"oRVp9Y17W\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Payment\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({AUz73pejr:AUz73pejrp2QlGBEgq,Ct7b816B0:Ct7b816B0p2QlGBEgq,fDNYos32C:fDNYos32Cp2QlGBEgq,id:idp2QlGBEgq,tUpJy8zvI:tUpJy8zvIp2QlGBEgq},index2)=>{tUpJy8zvIp2QlGBEgq??=\"\";fDNYos32Cp2QlGBEgq??=\"\";Ct7b816B0p2QlGBEgq??=\"\";AUz73pejrp2QlGBEgq??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`p2QlGBEgq-${idp2QlGBEgq}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tUpJy8zvI:tUpJy8zvIp2QlGBEgq},children:/*#__PURE__*/_jsx(MotionDivWithClass2w0aj96,{className:\"framer-w0aj96\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tUpJy8zvI:tUpJy8zvIp2QlGBEgq},webPageId:\"iFy1zywz2\"},motionChild:true,nodeId:\"oRC94ZuIX\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18xk901 framer-u3qtyo\",\"data-framer-name\":\"Integrations/Card Copy\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bi1cdo\",\"data-border\":true,\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x6b57-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kKe6zYNVc\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Logo,{company:Ct7b816B0p2QlGBEgq,height:\"100%\",id:\"kKe6zYNVc\",isSearch:false,layoutId:\"kKe6zYNVc\",radius:100,srcType:\"URL\",srcUrl:fDNYos32Cp2QlGBEgq,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithClass115km7q7,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"The Importance of Color\"})}),className:\"framer-15km7q7\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-600\"],text:Ct7b816B0p2QlGBEgq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Content\"})}),className:\"framer-1bdwwho\",\"data-framer-name\":\"Date\",fonts:[\"GF;Inter-500\"],text:AUz73pejrp2QlGBEgq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1a1x2sy\",\"data-framer-name\":\"Preload\"})]})})})})})},idp2QlGBEgq);})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithClass6rm6pt3,{className:\"framer-rm6pt3\",\"data-framer-name\":\"Content\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e82pe0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qypw5g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BQWpsEmih\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bba4ebff-6f11-45b1-a778-b58ebe5e9c87, rgb(36, 169, 95))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Link\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"BQWpsEmih\",layoutId:\"BQWpsEmih\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Booking Channels\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Booking Channels\"})}),className:\"framer-1a18s6j\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Integrated with all of the biggest reservation channels, exactly what your restaurant needs to succeed in the digital world.\"})}),className:\"framer-a7uypw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.main,{className:\"framer-1w667lh\",\"data-framer-name\":\"POS\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"NjkbWcO7o\",data:IntegrationPages,type:\"Collection\"},select:[{collection:\"NjkbWcO7o\",name:\"FeCjtkLpO\",type:\"Identifier\"},{collection:\"NjkbWcO7o\",name:\"fDNYos32C\",type:\"Identifier\"},{collection:\"NjkbWcO7o\",name:\"Ct7b816B0\",type:\"Identifier\"},{collection:\"NjkbWcO7o\",name:\"AUz73pejr\",type:\"Identifier\"},{collection:\"NjkbWcO7o\",name:\"tUpJy8zvI\",type:\"Identifier\"},{collection:\"NjkbWcO7o\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"NjkbWcO7o\",name:\"oRVp9Y17W\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Booking Channel\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({AUz73pejr:AUz73pejrNjkbWcO7o,Ct7b816B0:Ct7b816B0NjkbWcO7o,fDNYos32C:fDNYos32CNjkbWcO7o,FeCjtkLpO:FeCjtkLpONjkbWcO7o,id:idNjkbWcO7o,tUpJy8zvI:tUpJy8zvINjkbWcO7o},index3)=>{FeCjtkLpONjkbWcO7o??=\"\";fDNYos32CNjkbWcO7o??=\"\";Ct7b816B0NjkbWcO7o??=\"\";AUz73pejrNjkbWcO7o??=\"\";tUpJy8zvINjkbWcO7o??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`NjkbWcO7o-${idNjkbWcO7o}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tUpJy8zvI:tUpJy8zvINjkbWcO7o},children:/*#__PURE__*/_jsx(MotionDivWithClass2ft9qtn,{className:\"framer-ft9qtn\",children:/*#__PURE__*/_jsx(Link,{href:FeCjtkLpONjkbWcO7o,motionChild:true,nodeId:\"QsnC5zqPK\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3jiv1d framer-u3qtyo\",\"data-framer-name\":\"Integrations/Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nzdxor\",\"data-border\":true,\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-thdv8o\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v1uv4a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DC6Jmcz40\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Logo,{company:Ct7b816B0NjkbWcO7o,height:\"100%\",id:\"DC6Jmcz40\",isSearch:false,layoutId:\"DC6Jmcz40\",radius:100,srcType:\"URL\",srcUrl:fDNYos32CNjkbWcO7o,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithClass16tua3m,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"The Importance of Color\"})}),className:\"framer-6tua3m\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-600\"],text:Ct7b816B0NjkbWcO7o,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Content\"})}),className:\"framer-158qntf\",\"data-framer-name\":\"Date\",fonts:[\"GF;Inter-500\"],text:AUz73pejrNjkbWcO7o,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1tw1pun\",\"data-framer-name\":\"Preload\"})]})})})})})},idNjkbWcO7o);})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithClass7d4mmca,{className:\"framer-d4mmca\",\"data-framer-name\":\"Content\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2u2jk8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-75v1e2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OrkFWkUaq\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bba4ebff-6f11-45b1-a778-b58ebe5e9c87, rgb(36, 169, 95))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"House\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"OrkFWkUaq\",layoutId:\"OrkFWkUaq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Chit Printer Integrations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Chit Printer Integrations\"})}),className:\"framer-3eh422\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Chit printers enable your front-of-house staff to seamlessly print guest booking details and share useful information about the guest and reservation amongst your team.\"})}),className:\"framer-xd6nin\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.main,{className:\"framer-15zzbge\",\"data-framer-name\":\"POS\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lP1LRvbZH\",data:IntegrationPages,type:\"Collection\"},select:[{collection:\"lP1LRvbZH\",name:\"tUpJy8zvI\",type:\"Identifier\"},{collection:\"lP1LRvbZH\",name:\"fDNYos32C\",type:\"Identifier\"},{collection:\"lP1LRvbZH\",name:\"Ct7b816B0\",type:\"Identifier\"},{collection:\"lP1LRvbZH\",name:\"AUz73pejr\",type:\"Identifier\"},{collection:\"lP1LRvbZH\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"lP1LRvbZH\",name:\"oRVp9Y17W\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Chit Printer\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({AUz73pejr:AUz73pejrlP1LRvbZH,Ct7b816B0:Ct7b816B0lP1LRvbZH,fDNYos32C:fDNYos32ClP1LRvbZH,id:idlP1LRvbZH,tUpJy8zvI:tUpJy8zvIlP1LRvbZH},index4)=>{tUpJy8zvIlP1LRvbZH??=\"\";fDNYos32ClP1LRvbZH??=\"\";Ct7b816B0lP1LRvbZH??=\"\";AUz73pejrlP1LRvbZH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lP1LRvbZH-${idlP1LRvbZH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tUpJy8zvI:tUpJy8zvIlP1LRvbZH},children:/*#__PURE__*/_jsx(MotionDivWithClass21dgjf9t,{className:\"framer-1dgjf9t\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tUpJy8zvI:tUpJy8zvIlP1LRvbZH},webPageId:\"iFy1zywz2\"},motionChild:true,nodeId:\"GDMTl1ddr\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cw2hmd framer-u3qtyo\",\"data-framer-name\":\"Integrations/Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1awhrgq\",\"data-border\":true,\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wd7g4h\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pou9h3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Z7R8JpP1X\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Logo,{company:Ct7b816B0lP1LRvbZH,height:\"100%\",id:\"Z7R8JpP1X\",isSearch:false,layoutId:\"Z7R8JpP1X\",radius:100,srcType:\"URL\",srcUrl:fDNYos32ClP1LRvbZH,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithClass1128tctl,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"The Importance of Color\"})}),className:\"framer-128tctl\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-600\"],text:Ct7b816B0lP1LRvbZH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Content\"})}),className:\"framer-1kkv3oq\",\"data-framer-name\":\"Date\",fonts:[\"GF;Inter-500\"],text:AUz73pejrlP1LRvbZH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-cirixa\",\"data-framer-name\":\"Preload\"})]})})})})})},idlP1LRvbZH);})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithClass8kv6w13,{className:\"framer-kv6w13\",\"data-framer-name\":\"Content\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-svaz25\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cb465v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xdH_pYPr4\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-bba4ebff-6f11-45b1-a778-b58ebe5e9c87, rgb(36, 169, 95))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"House\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"xdH_pYPr4\",layoutId:\"xdH_pYPr4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"PMS Integrations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"PMS Integrations\"})}),className:\"framer-1u47ysb\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Tackle some the biggest problems faced by hoteliers with Eat App\u2019s Property Management System (PMS) Integration. Reduce time spent on administrative tasks and connect the dots of the customer journey from check-in to check-out, giving your guests the most memorable experiences possible.\"})}),className:\"framer-oldzc8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.main,{className:\"framer-7g0gmp\",\"data-framer-name\":\"POS\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UzZ7dtAW_\",data:IntegrationPages,type:\"Collection\"},select:[{collection:\"UzZ7dtAW_\",name:\"tUpJy8zvI\",type:\"Identifier\"},{collection:\"UzZ7dtAW_\",name:\"fDNYos32C\",type:\"Identifier\"},{collection:\"UzZ7dtAW_\",name:\"Ct7b816B0\",type:\"Identifier\"},{collection:\"UzZ7dtAW_\",name:\"AUz73pejr\",type:\"Identifier\"},{collection:\"UzZ7dtAW_\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"UzZ7dtAW_\",name:\"oRVp9Y17W\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"PMS\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({AUz73pejr:AUz73pejrUzZ7dtAW_,Ct7b816B0:Ct7b816B0UzZ7dtAW_,fDNYos32C:fDNYos32CUzZ7dtAW_,id:idUzZ7dtAW_,tUpJy8zvI:tUpJy8zvIUzZ7dtAW_},index5)=>{tUpJy8zvIUzZ7dtAW_??=\"\";fDNYos32CUzZ7dtAW_??=\"\";Ct7b816B0UzZ7dtAW_??=\"\";AUz73pejrUzZ7dtAW_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UzZ7dtAW_-${idUzZ7dtAW_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tUpJy8zvI:tUpJy8zvIUzZ7dtAW_},children:/*#__PURE__*/_jsx(MotionDivWithClass27j8se3,{className:\"framer-7j8se3\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tUpJy8zvI:tUpJy8zvIUzZ7dtAW_},webPageId:\"iFy1zywz2\"},motionChild:true,nodeId:\"SUPS0ubrj\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-efhh48 framer-u3qtyo\",\"data-framer-name\":\"Integrations/Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z9q9tt\",\"data-border\":true,\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gmkove\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16rzk4y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"quf4lohBk\",rendersWithMotion:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Logo,{company:fDNYos32CUzZ7dtAW_,height:\"100%\",id:\"quf4lohBk\",isSearch:false,layoutId:\"quf4lohBk\",radius:100,srcType:\"URL\",srcUrl:fDNYos32CUzZ7dtAW_,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithClass11k3bfkt,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"The Importance of Color\"})}),className:\"framer-1k3bfkt\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-600\"],text:Ct7b816B0UzZ7dtAW_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Content\"})}),className:\"framer-12fbyq8\",\"data-framer-name\":\"Date\",fonts:[\"GF;Inter-500\"],text:AUz73pejrUzZ7dtAW_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1bluyom\",\"data-framer-name\":\"Preload\"})]})})})})})},idUzZ7dtAW_);})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:60,ref:ref2,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16o9hhx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l60jqz-container\",nodeId:\"rasfhhgcd\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(ScrollToTop,{height:\"100%\",id:\"rasfhhgcd\",layoutId:\"rasfhhgcd\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithClass914ckuas,{className:\"framer-14ckuas\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8v1pm2\",\"data-styles-preset\":\"MiTP6YosN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4f722d51-56a2-425b-b75e-e0fb5498f26a, rgb(85, 85, 85))\"},children:\"No results found\"})}),className:\"framer-1kdhse0\",\"data-framer-name\":\"If you have a request for a new integration, please don\u2019t hesitate to contact us at info@eatapp.co. We value your feedback and are always looking for ways to improve our service.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8034c59e-fca9-48bc-9ea1-84afb18154d3, rgb(151, 151, 151))\"},children:[\"The list of Eat App integrations above is not comprehensive. If you don\u2019t see the restaurant integration you are looking for, you can reach out to us at \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4f722d51-56a2-425b-b75e-e0fb5498f26a, rgb(85, 85, 85))\"},children:\"info@eatapp.co\"}),\" to inquire if we support it\"]})}),className:\"framer-ysbt4k\",\"data-framer-name\":\"If you have a request for a new integration, please don\u2019t hesitate to contact us at info@eatapp.co. We value your feedback and are always looking for ways to improve our service.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wv2b1p\",\"data-framer-name\":\"Frame 2608424\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6nwq3z\",\"data-framer-name\":\"Frame 39305\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13qy2ha\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Looking for a specific integration?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Looking for a specific integration?\"})}),className:\"framer-4ny9af\",\"data-framer-name\":\"Looking for a specific integration?\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"If you have a request for a new integration, please don\u2019t hesitate to contact us at info@eatapp.co. We value your feedback and are always looking for ways to improve our service.\"})}),className:\"framer-1h81t3l\",\"data-framer-name\":\"If you have a request for a new integration, please don\u2019t hesitate to contact us at info@eatapp.co. We value your feedback and are always looking for ways to improve our service.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kaz1ku-container\",nodeId:\"SkSuaHusR\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(ButtonLarge,{FUt_CdV5_:\"mailto:eatapp.co\",height:\"100%\",id:\"SkSuaHusR\",layoutId:\"SkSuaHusR\",nlJMHYalf:\"Talk to us\",q04PyOp5x:\"var(--token-9e5a84ad-8927-45d6-aa15-4ddcab981904, rgb(36, 169, 95))\",style:{width:\"100%\"},TDdoU7eHm:true,tU60Onr8w:\"var(--token-bdb78e69-2b22-4efc-bac1-0749eeabd9be, rgb(9, 119, 62))\",variant:\"rpJfo7ONV\",width:\"100%\",XAs4b75Hx:\"var(--token-f474097e-d954-444b-a4b9-4dae117d512b, rgb(18, 136, 73))\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4kc7vc\",\"data-framer-name\":\"Frame 2608435\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Frequently Asked Questions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Frequently Asked Questions\"})}),className:\"framer-sczt43\",\"data-framer-name\":\"Frequently Asked Questions\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yyefa1\",\"data-framer-name\":\"FAQs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ns57b\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(17, 24, 39)\"},children:\"What are Eat App integrations?\"})}),className:\"framer-1f9brvj\",\"data-framer-name\":\"Question\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(107, 114, 128)\"},children:\"Eat App integrations refer to the ability of the Eat App platform to connect and work seamlessly with other software and services to enhance its functionality and provide more comprehensive solutions for restaurant management.\"})}),className:\"framer-193xw02\",\"data-framer-name\":\"Answer\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12zkut5\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(17, 24, 39)\"},children:\"How do I install and use Eat App's integrations at my restaurant?\"})}),className:\"framer-12mzcyh\",\"data-framer-name\":\"Question\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(107, 114, 128)\"},children:\"The process for installing Eat App's integrations can vary depending on the specific integration you want to set up and the software or service you are integrating with. For most integrations, you can access them directly from within Eat App's restaurant management software - for the rest you can reach out to info@eatapp.co to set up the integrations.\"})}),className:\"framer-q969qd\",\"data-framer-name\":\"Answer\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fopw6q\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(17, 24, 39)\"},children:\"Does Eat App support custom integrations or API access?\"})}),className:\"framer-wki6c2\",\"data-framer-name\":\"Question\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(107, 114, 128)\"},children:\" Eat App does support custom integrations and API access. Reach out to use to learn how you can gain access to your reservations and guests through our open API and build integrations with your existing systems.\"})}),className:\"framer-bsovz3\",\"data-framer-name\":\"Answer\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-asubql\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(17, 24, 39)\"},children:\"What if I don't see my integration in the list above?\"})}),className:\"framer-1xhe33z\",\"data-framer-name\":\"Question\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(107, 114, 128)\"},children:\"The list of Eat App integrations above is not comprehensive. If you don't see the restaurant integration you are looking for, you can reach out to us at info@eatapp.co to inquire if we support it.\"})}),className:\"framer-1m4hfen\",\"data-framer-name\":\"Answer\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u141as-container\",isAuthoredByUser:true,nodeId:\"CwfjND6n_\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(FramerSearch,{height:\"100%\",id:\"CwfjND6n_\",layoutId:\"CwfjND6n_\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14tq7kg\",\"data-framer-name\":\"Feature set\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xjomfe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1djm088\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:275,svg:'<svg width=\"275\" height=\"26\" viewBox=\"0 0 275 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M103.274 20.7557C114.651 13.8383 125.883 7.00961 137.408 0.00279524C148.787 6.93745 160.138 13.8548 171.635 20.8626C182.908 13.9745 194.122 7.12108 205.776 0C217.048 6.82045 228.436 13.7095 240.001 20.7063C245.795 17.27 251.452 13.7962 257.223 10.5263C262.785 7.37419 267.706 3.01418 274.012 0.919181C275.682 4.01834 273.673 5.19231 272.043 6.24584C269.032 8.19193 265.872 9.90594 262.779 11.7241C256.146 15.6255 249.521 19.5414 242.878 23.4263C241.857 24.0238 240.762 24.4953 239.79 24.9795C229.325 18.73 219.061 12.5957 208.792 6.47146C206.726 5.23982 204.967 5.17592 202.651 6.60485C192.47 12.8881 182.098 18.8634 171.564 25.0864C161.497 19.0279 151.397 12.9767 141.331 6.87074C138.761 5.31205 136.731 5.15216 133.858 6.97949C124.487 12.9411 114.793 18.3966 105.216 24.0339C104.634 24.3765 103.989 24.6104 103.232 24.9594C98.0809 22.0165 92.8611 19.1129 87.7208 16.075C82.2791 12.8579 76.8574 9.59984 71.5426 6.17915C69.3654 4.77754 67.5929 5.53495 65.8012 6.57475C62.6984 8.37647 59.6997 10.3554 56.6142 12.1892C49.5571 16.3838 42.4745 20.5336 35.0538 24.9073C33.6796 24.2467 31.9336 23.5596 30.3392 22.6168C21.3616 17.3029 12.4041 11.9553 3.48497 6.54363C2.2095 5.76983 1.09386 4.667 0.0943185 3.54685C-0.164238 3.25631 0.157357 2.24306 0.474415 1.72048C0.66262 1.40887 1.45483 1.16678 1.8139 1.30748C3.40274 1.92876 5.02445 2.55188 6.46986 3.44089C14.1894 8.18552 21.8523 13.0233 29.5517 17.799C31.1506 18.7904 32.8254 19.6583 34.6902 20.7109C39.8012 17.6565 44.944 14.6122 50.0578 11.5195C55.3223 8.33626 60.6125 5.19054 65.7838 1.86112C68.2836 0.252175 70.2469 0.515332 72.7266 2.09505C82.2378 8.15624 91.9008 13.9799 101.514 19.8804C102.083 20.2294 102.713 20.4788 103.274 20.7557Z\" fill=\"#C1E4CD\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qhmw96\",\"data-framer-name\":\"Frame 39294\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Power better guest experiences and increase loyalty\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Power better guest experiences and increase loyalty\"})}),className:\"framer-1uwwvd6\",\"data-framer-name\":\"Streamline your restaurant operations today\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2e26zd\",\"data-framer-name\":\"Frame 2608263\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yycpd1-container\",nodeId:\"M2gi66Y2X\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(ButtonLarge,{FUt_CdV5_:\"https://admin.eatapp.co/sign_up?utm_source=Integrations&utm_medium=Footer+CTA&utm_campaign=eatapp.co&utm_content=Get+started\",height:\"100%\",id:\"M2gi66Y2X\",layoutId:\"M2gi66Y2X\",nlJMHYalf:\"Get Started\",q04PyOp5x:\"var(--token-9e5a84ad-8927-45d6-aa15-4ddcab981904, rgb(36, 169, 95))\",style:{width:\"100%\"},TDdoU7eHm:true,tU60Onr8w:\"var(--token-bdb78e69-2b22-4efc-bac1-0749eeabd9be, rgb(9, 119, 62))\",variant:\"rpJfo7ONV\",width:\"100%\",XAs4b75Hx:\"var(--token-f474097e-d954-444b-a4b9-4dae117d512b, rgb(18, 136, 73))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ww41nf-container\",nodeId:\"VyiMxHKs_\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(ButtonLarge,{FUt_CdV5_:\"https://admin.eatapp.co/sign_up?utm_source=Integrations&utm_medium=Footer+CTA&utm_campaign=eatapp.co&utm_content=Request+demo\",height:\"100%\",id:\"VyiMxHKs_\",layoutId:\"VyiMxHKs_\",nlJMHYalf:\"Request Demo\",q04PyOp5x:\"var(--token-9e5a84ad-8927-45d6-aa15-4ddcab981904, rgb(36, 169, 95))\",style:{width:\"100%\"},TDdoU7eHm:false,tU60Onr8w:\"var(--token-bdb78e69-2b22-4efc-bac1-0749eeabd9be, rgb(9, 119, 62))\",variant:\"pz3XUcDHS\",width:\"100%\",XAs4b75Hx:\"var(--token-f474097e-d954-444b-a4b9-4dae117d512b, rgb(18, 136, 73))\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3m20fr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a1ohvc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:92,intrinsicWidth:275,svg:'<svg width=\"275\" height=\"92\" viewBox=\"0 0 275 92\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M274.245 66.7832C275.173 69.5351 275.205 70.743 273.417 71.7919C264.571 76.9796 255.558 81.9399 247.101 87.7096C241.848 91.2939 238.024 90.8261 232.94 87.3798C224.476 81.6438 215.399 76.8133 206.003 71.2601C194.862 77.8649 183.437 84.6398 171.808 91.5333C165.615 87.9271 159.689 84.5456 153.835 81.0453C149.142 78.2413 144.508 75.3359 139.907 72.3839C138.25 71.3204 136.845 71.3195 135.169 72.3638C127.05 77.4209 118.899 82.4278 110.717 87.3808C108.519 88.7101 106.169 89.7855 103.589 91.135C91.4556 85.9088 81.0471 77.293 68.8753 71.3241C63.0288 74.8133 57.1869 78.3044 51.3395 81.7881C46.6415 84.5867 41.9086 87.3305 37.2481 90.1911C35.3833 91.3351 33.715 91.1313 31.9681 90.0641C22.4897 84.2715 12.9959 78.5027 3.5304 72.6881C2.25855 71.907 1.11832 70.9092 0 70.0742C0.767475 67.4364 1.96891 67.0664 3.92231 68.2632C9.7469 71.8339 15.6163 75.3323 21.461 78.8727C25.9799 81.61 30.487 84.3684 35.0489 87.1478C44.0256 81.5891 52.5354 75.8503 61.4875 70.9138C69.7369 66.3647 68.118 65.6073 76.6443 70.9239C85.3442 76.3492 94.1994 81.5278 103.426 87.0783C114.622 80.2879 125.978 73.4008 137.529 66.3948C148.832 73.2053 160.214 80.065 171.8 87.0463C183.229 80.1692 194.638 73.3039 206.121 66.3948C217.405 73.2546 228.494 79.9947 239.922 86.9412C251.484 81.0363 262.139 73.0043 274.245 66.7832Z\" fill=\"#C1E4CD\"/>\\n<path d=\"M240.188 58.2249C237.451 56.679 234.459 55.081 231.56 53.3304C224.103 48.826 216.693 44.2441 209.252 39.7123C207.065 38.3802 205.185 38.1664 202.668 39.7754C193.888 45.387 184.864 50.6159 175.911 55.9554C174.595 56.7393 173.165 57.3322 171.59 58.1116C166.454 55.1586 161.246 52.2376 156.112 49.1925C150.675 45.9681 145.272 42.6844 139.93 39.3066C138.026 38.1024 136.613 38.4487 134.777 39.567C124.998 45.5177 115.122 51.3112 105.275 57.1477C104.696 57.4903 104.059 57.7361 103.207 58.1426C97.347 54.7503 91.4227 51.3615 85.5396 47.9014C81.1248 45.3039 76.7118 42.6954 72.3975 39.9371C69.9343 38.3619 67.8175 38.3866 65.3113 39.9553C56.1911 45.6675 46.9767 51.229 37.7725 56.806C36.7748 57.4108 35.6137 57.7461 34.4881 58.224C23.97 51.9298 13.5643 45.7205 3.18696 39.4637C2.18009 38.8562 1.13122 38.0915 0.521821 37.133C0.113397 36.4889 0.444084 35.3742 0.444084 33.6254C13.0782 39.4811 23.3368 47.8923 35.1696 53.8713C46.5228 46.9731 57.8767 40.0742 69.2563 33.1595C80.7063 40.1235 91.9281 46.9494 103.524 54.002C114.741 47.1193 126.064 40.171 137.593 33.0965C148.903 40.0092 160.111 46.8599 171.794 54.001C182.923 47.2079 194.262 40.2878 206.019 33.1111C217.096 39.8978 228.295 46.7594 239.917 53.8804C251.372 47.8804 262.22 40.1975 273.94 33.7059C274.88 37.1495 274.661 37.7927 272.33 39.2747C269.592 41.016 266.866 42.7786 264.065 44.414C256.254 48.9759 248.407 53.4766 240.188 58.2249Z\" fill=\"#C1E4CD\"/>\\n<path d=\"M103.419 20.7557C114.796 13.8383 126.028 7.00961 137.553 0.00279524C148.932 6.93745 160.283 13.8548 171.78 20.8626C183.053 13.9745 194.267 7.12108 205.921 0C217.194 6.82045 228.581 13.7095 240.146 20.7063C245.94 17.27 251.597 13.7962 257.368 10.5263C262.93 7.37419 267.851 3.01418 274.157 0.919181C275.827 4.01834 273.818 5.19231 272.188 6.24584C269.177 8.19193 266.017 9.90594 262.924 11.7241C256.291 15.6255 249.666 19.5414 243.023 23.4263C242.002 24.0238 240.907 24.4953 239.935 24.9795C229.47 18.73 219.206 12.5957 208.937 6.47146C206.871 5.23982 205.112 5.17592 202.796 6.60485C192.615 12.8881 182.243 18.8634 171.709 25.0864C161.642 19.0279 151.542 12.9767 141.476 6.87074C138.906 5.31205 136.876 5.15216 134.003 6.97949C124.632 12.9411 114.938 18.3966 105.361 24.0339C104.779 24.3765 104.134 24.6104 103.377 24.9594C98.2259 22.0165 93.0061 19.1129 87.8659 16.075C82.4241 12.8579 77.0024 9.59984 71.6877 6.17915C69.5104 4.77754 67.738 5.53495 65.9463 6.57475C62.8435 8.37647 59.8447 10.3554 56.7593 12.1892C49.7022 16.3838 42.6196 20.5336 35.1988 24.9073C33.8247 24.2467 32.0786 23.5596 30.4843 22.6168C21.5067 17.3029 12.5492 11.9553 3.63001 6.54363C2.35454 5.76983 1.23891 4.667 0.239364 3.54685C-0.0191924 3.25631 0.302403 2.24306 0.619461 1.72048C0.807666 1.40887 1.59988 1.16678 1.95895 1.30748C3.54778 1.92876 5.1695 2.55188 6.61491 3.44089C14.3344 8.18552 21.9974 13.0233 29.6968 17.799C31.2957 18.7904 32.9704 19.6583 34.8352 20.7109C39.9462 17.6565 45.0891 14.6122 50.2028 11.5195C55.4673 8.33626 60.7576 5.19054 65.9289 1.86112C68.4286 0.252175 70.392 0.515332 72.8717 2.09505C82.3829 8.15624 92.0458 13.9799 101.659 19.8804C102.229 20.2294 102.858 20.4788 103.419 20.7557Z\" fill=\"#C1E4CD\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ogjrml\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ki5hh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f1g0bv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jh5plv\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13sy5xk\",\"data-framer-name\":\"Logo / Cactus / Eat Logo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ddxf5\",\"data-framer-name\":\"Logo / Cactus / Eat Logo\",children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/?utm_source=Integrations&utm_medium=Footer&utm_campaign=restaurant.eatapp.co&utm_content=Logo\",motionChild:true,nodeId:\"FGoaEmWwN\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-k6mikn framer-u3qtyo\",\"data-framer-name\":\"Symbols\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"24\" viewBox=\"0 0 48 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_1176_10649\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"48\" height=\"24\">\\n<path d=\"M9.77071 20.1928C10.3829 20.1928 10.9216 20.1244 11.3869 19.9876C11.8522 19.8507 12.2685 19.6827 12.6358 19.4837C13.0031 19.2846 13.3215 19.0669 13.5908 18.8305C13.8602 18.5941 14.1051 18.3764 14.3255 18.1773C14.6193 18.5505 14.9254 19.0295 15.2438 19.6143C15.5621 20.1991 15.7213 20.6781 15.7213 21.0513C15.7213 21.5988 15.4152 22.0964 14.803 22.5443C14.2887 22.9425 13.5602 23.2846 12.6174 23.5708C11.6746 23.8569 10.5666 24 9.29319 24C8.14225 24 7.00969 23.8507 5.89548 23.5521C4.78127 23.2535 3.78952 22.731 2.92019 21.9844C2.05087 21.2379 1.34684 20.2364 0.808104 18.9798C0.269365 17.7232 0 16.1369 0 14.2208C0 12.6532 0.238756 11.3033 0.716274 10.1711C1.19379 9.03887 1.83047 8.09954 2.62634 7.35303C3.4222 6.60653 4.32213 6.0591 5.32614 5.71073C6.33015 5.36236 7.35864 5.18818 8.41163 5.18818C9.78296 5.18818 10.9461 5.40591 11.9012 5.84137C12.8562 6.27683 13.6337 6.86158 14.2336 7.59565C14.8336 8.32971 15.2683 9.16951 15.5376 10.1151C15.807 11.0607 15.9417 12.056 15.9417 13.1011V13.6236C15.9417 13.8227 15.9356 14.0342 15.9233 14.2582C15.9111 14.4821 15.8988 14.6998 15.8866 14.9114C15.8743 15.1229 15.856 15.2908 15.8315 15.4152H5.03228C5.13024 16.7838 5.54653 17.9222 6.28117 18.8305C7.01581 19.7387 8.17898 20.1928 9.77071 20.1928ZM11.4236 12.6159C11.4236 11.4215 11.1971 10.451 10.7441 9.70451C10.2911 8.95801 9.47686 8.58476 8.30143 8.58476C7.27293 8.58476 6.46483 8.93934 5.87712 9.64852C5.2894 10.3577 4.99555 11.3468 4.99555 12.6159H11.4236ZM33.1463 19.0358C33.1463 20.9767 33.4279 22.4075 33.9911 23.3281C33.5503 23.5023 33.1401 23.6268 32.7606 23.7014C32.381 23.7761 31.9831 23.8134 31.5668 23.8134C30.6852 23.8134 30.0179 23.6392 29.5649 23.2908C29.1119 22.9425 28.8241 22.4448 28.7017 21.7978C28.163 22.3701 27.4528 22.8554 26.5712 23.2535C25.6897 23.6516 24.6122 23.8507 23.3388 23.8507C22.6776 23.8507 22.0165 23.7574 21.3553 23.5708C20.6941 23.3841 20.0942 23.0793 19.5554 22.6563C19.0167 22.2333 18.5759 21.6672 18.2331 20.958C17.8902 20.2488 17.7188 19.3841 17.7188 18.3639C17.7188 17.0949 18.0188 16.0622 18.6188 15.2659C19.2187 14.4697 19.9717 13.8414 20.8778 13.381C21.7838 12.9207 22.7634 12.6034 23.8163 12.4292C24.8693 12.2551 25.8366 12.1431 26.7182 12.0933C27.012 12.0684 27.2998 12.056 27.5814 12.056H28.3711V11.3841C28.3711 10.4386 28.1201 9.76672 27.6181 9.36859C27.1161 8.97045 26.3019 8.77138 25.1754 8.77138C24.1224 8.77138 23.1858 8.94557 22.3654 9.29393C21.5451 9.6423 20.7431 10.0404 19.9595 10.4883C19.6166 10.0653 19.3412 9.59876 19.133 9.08865C18.9249 8.57854 18.8208 8.19907 18.8208 7.95023C18.8208 7.62675 19.0106 7.29705 19.3901 6.96112C19.7697 6.62519 20.2901 6.3266 20.9512 6.06532C21.6124 5.80404 22.3715 5.59254 23.2286 5.43079C24.0857 5.26905 24.9918 5.18818 25.9468 5.18818C27.2692 5.18818 28.3895 5.32504 29.3078 5.59876C30.2261 5.87247 30.973 6.29549 31.5484 6.86781C32.1239 7.44013 32.5341 8.15552 32.7789 9.014C33.0238 9.87248 33.1463 10.874 33.1463 12.0187V19.0358ZM28.4446 14.7061H27.9303C27.7589 14.7061 27.5875 14.7185 27.4161 14.7434C26.8039 14.7932 26.1978 14.874 25.5978 14.986C24.9979 15.098 24.4653 15.2722 24 15.5086C23.5347 15.7449 23.1552 16.0622 22.8613 16.4603C22.5675 16.8585 22.4205 17.3686 22.4205 17.9907C22.4205 18.6874 22.6164 19.2784 23.0082 19.7636C23.4 20.2488 24.0612 20.4914 24.9918 20.4914C25.457 20.4914 25.8978 20.4292 26.3141 20.3048C26.7304 20.1804 27.0977 20.0187 27.4161 19.8196C27.7344 19.6205 27.9854 19.4028 28.1691 19.1664C28.3527 18.93 28.4446 18.7123 28.4446 18.5132V14.7061ZM37.3477 20.6781C37.1763 20.1804 37.0661 19.6579 37.0171 19.1104C36.9682 18.563 36.9437 18.0156 36.9437 17.4681V0.1493L37.4947 0.0746501C37.6661 0.0497666 37.8497 0.0311043 38.0456 0.0186625C38.2415 0.00622078 38.4374 0 38.6333 0C39.0252 0 39.417 0.0373247 39.8088 0.111975C40.2006 0.186626 40.5556 0.335924 40.874 0.559876C41.1923 0.783827 41.4495 1.08865 41.6454 1.47434C41.8413 1.86003 41.9392 2.36392 41.9392 2.986V5.59876H47.0817V9.40591H41.9392V17.3935C41.9392 19.1353 42.6371 20.0062 44.0329 20.0062C44.3758 20.0062 44.7002 19.9502 45.0063 19.8383C45.3124 19.7263 45.5941 19.6019 45.8512 19.465C46.1083 19.3281 46.3226 19.1851 46.494 19.0358C46.6654 18.8865 46.7878 18.7745 46.8613 18.6998C47.2286 19.2473 47.5102 19.7201 47.7061 20.1182C47.9021 20.5163 48 20.8896 48 21.2379C48 21.5614 47.8714 21.8787 47.6143 22.1897C47.3572 22.5008 46.996 22.7869 46.5307 23.0482C46.0654 23.3095 45.5022 23.521 44.8411 23.6827C44.1799 23.8445 43.4575 23.9254 42.6739 23.9254C41.1311 23.9254 39.9435 23.6268 39.1109 23.0295C38.2783 22.4323 37.6906 21.6485 37.3477 20.6781Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_1176_10649)\">\\n<path d=\"M9.77071 20.1928C10.3829 20.1928 10.9216 20.1244 11.3869 19.9876C11.8522 19.8507 12.2685 19.6827 12.6358 19.4837C13.0031 19.2846 13.3215 19.0669 13.5908 18.8305C13.8602 18.5941 14.1051 18.3764 14.3255 18.1773C14.6193 18.5505 14.9254 19.0295 15.2438 19.6143C15.5621 20.1991 15.7213 20.6781 15.7213 21.0513C15.7213 21.5988 15.4152 22.0964 14.803 22.5443C14.2887 22.9425 13.5602 23.2846 12.6174 23.5708C11.6746 23.8569 10.5666 24 9.29319 24C8.14225 24 7.00969 23.8507 5.89548 23.5521C4.78127 23.2535 3.78952 22.731 2.92019 21.9844C2.05087 21.2379 1.34684 20.2364 0.808104 18.9798C0.269365 17.7232 0 16.1369 0 14.2208C0 12.6532 0.238756 11.3033 0.716274 10.1711C1.19379 9.03887 1.83047 8.09954 2.62634 7.35303C3.4222 6.60653 4.32213 6.0591 5.32614 5.71073C6.33015 5.36236 7.35864 5.18818 8.41163 5.18818C9.78296 5.18818 10.9461 5.40591 11.9012 5.84137C12.8562 6.27683 13.6337 6.86158 14.2336 7.59565C14.8336 8.32971 15.2683 9.16951 15.5376 10.1151C15.807 11.0607 15.9417 12.056 15.9417 13.1011V13.6236C15.9417 13.8227 15.9356 14.0342 15.9233 14.2582C15.9111 14.4821 15.8988 14.6998 15.8866 14.9114C15.8743 15.1229 15.856 15.2908 15.8315 15.4152H5.03228C5.13024 16.7838 5.54653 17.9222 6.28117 18.8305C7.01581 19.7387 8.17898 20.1928 9.77071 20.1928ZM11.4236 12.6159C11.4236 11.4215 11.1971 10.451 10.7441 9.70451C10.2911 8.95801 9.47686 8.58476 8.30143 8.58476C7.27293 8.58476 6.46483 8.93934 5.87712 9.64852C5.2894 10.3577 4.99555 11.3468 4.99555 12.6159H11.4236ZM33.1463 19.0358C33.1463 20.9767 33.4279 22.4075 33.9911 23.3281C33.5503 23.5023 33.1401 23.6268 32.7606 23.7014C32.381 23.7761 31.9831 23.8134 31.5668 23.8134C30.6852 23.8134 30.0179 23.6392 29.5649 23.2908C29.1119 22.9425 28.8241 22.4448 28.7017 21.7978C28.163 22.3701 27.4528 22.8554 26.5712 23.2535C25.6897 23.6516 24.6122 23.8507 23.3388 23.8507C22.6776 23.8507 22.0165 23.7574 21.3553 23.5708C20.6941 23.3841 20.0942 23.0793 19.5554 22.6563C19.0167 22.2333 18.5759 21.6672 18.2331 20.958C17.8902 20.2488 17.7188 19.3841 17.7188 18.3639C17.7188 17.0949 18.0188 16.0622 18.6188 15.2659C19.2187 14.4697 19.9717 13.8414 20.8778 13.381C21.7838 12.9207 22.7634 12.6034 23.8163 12.4292C24.8693 12.2551 25.8366 12.1431 26.7182 12.0933C27.012 12.0684 27.2998 12.056 27.5814 12.056H28.3711V11.3841C28.3711 10.4386 28.1201 9.76672 27.6181 9.36859C27.1161 8.97045 26.3019 8.77138 25.1754 8.77138C24.1224 8.77138 23.1858 8.94557 22.3654 9.29393C21.5451 9.6423 20.7431 10.0404 19.9595 10.4883C19.6166 10.0653 19.3412 9.59876 19.133 9.08865C18.9249 8.57854 18.8208 8.19907 18.8208 7.95023C18.8208 7.62675 19.0106 7.29705 19.3901 6.96112C19.7697 6.62519 20.2901 6.3266 20.9512 6.06532C21.6124 5.80404 22.3715 5.59254 23.2286 5.43079C24.0857 5.26905 24.9918 5.18818 25.9468 5.18818C27.2692 5.18818 28.3895 5.32504 29.3078 5.59876C30.2261 5.87247 30.973 6.29549 31.5484 6.86781C32.1239 7.44013 32.5341 8.15552 32.7789 9.014C33.0238 9.87248 33.1463 10.874 33.1463 12.0187V19.0358ZM28.4446 14.7061H27.9303C27.7589 14.7061 27.5875 14.7185 27.4161 14.7434C26.8039 14.7932 26.1978 14.874 25.5978 14.986C24.9979 15.098 24.4653 15.2722 24 15.5086C23.5347 15.7449 23.1552 16.0622 22.8613 16.4603C22.5675 16.8585 22.4205 17.3686 22.4205 17.9907C22.4205 18.6874 22.6164 19.2784 23.0082 19.7636C23.4 20.2488 24.0612 20.4914 24.9918 20.4914C25.457 20.4914 25.8978 20.4292 26.3141 20.3048C26.7304 20.1804 27.0977 20.0187 27.4161 19.8196C27.7344 19.6205 27.9854 19.4028 28.1691 19.1664C28.3527 18.93 28.4446 18.7123 28.4446 18.5132V14.7061ZM37.3477 20.6781C37.1763 20.1804 37.0661 19.6579 37.0171 19.1104C36.9682 18.563 36.9437 18.0156 36.9437 17.4681V0.1493L37.4947 0.0746501C37.6661 0.0497666 37.8497 0.0311043 38.0456 0.0186625C38.2415 0.00622078 38.4374 0 38.6333 0C39.0252 0 39.417 0.0373247 39.8088 0.111975C40.2006 0.186626 40.5556 0.335924 40.874 0.559876C41.1923 0.783827 41.4495 1.08865 41.6454 1.47434C41.8413 1.86003 41.9392 2.36392 41.9392 2.986V5.59876H47.0817V9.40591H41.9392V17.3935C41.9392 19.1353 42.6371 20.0062 44.0329 20.0062C44.3758 20.0062 44.7002 19.9502 45.0063 19.8383C45.3124 19.7263 45.5941 19.6019 45.8512 19.465C46.1083 19.3281 46.3226 19.1851 46.494 19.0358C46.6654 18.8865 46.7878 18.7745 46.8613 18.6998C47.2286 19.2473 47.5102 19.7201 47.7061 20.1182C47.9021 20.5163 48 20.8896 48 21.2379C48 21.5614 47.8714 21.8787 47.6143 22.1897C47.3572 22.5008 46.996 22.7869 46.5307 23.0482C46.0654 23.3095 45.5022 23.521 44.8411 23.6827C44.1799 23.8445 43.4575 23.9254 42.6739 23.9254C41.1311 23.9254 39.9435 23.6268 39.1109 23.0295C38.2783 22.4323 37.6906 21.6485 37.3477 20.6781Z\" fill=\"#128849\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Empowering restaurants, one table at a time.\"}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Discover seamless dining with Eat App.\"})]}),className:\"framer-3wyzhx\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15h1g5t\",\"data-framer-name\":\"Footer/Social links\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14koffq\",\"data-framer-name\":\"Footers/Social link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ao4pkk\",\"data-framer-name\":\"Footers/Social icon\",whileHover:animation4,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/eatapp/\",motionChild:true,nodeId:\"WUTm6s7j7\",openInNewTab:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-7xq2jh framer-u3qtyo\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.315 0C12.745 0 13.099 0.0129999 14.123 0.0599999C15.187 0.109 15.914 0.278 16.55 0.525C17.2175 0.775874 17.8222 1.16936 18.322 1.678C18.8306 2.17777 19.2241 2.7825 19.475 3.45C19.722 4.086 19.891 4.813 19.94 5.877C19.988 6.944 20 7.284 20 10V10.08C20 12.723 19.988 13.067 19.94 14.123C19.891 15.187 19.722 15.914 19.475 16.55C19.2241 17.2175 18.8306 17.8222 18.322 18.322C17.8222 18.8306 17.2175 19.2241 16.55 19.475C15.914 19.722 15.187 19.891 14.123 19.94C13.056 19.988 12.716 20 10 20H9.92C7.277 20 6.933 19.988 5.877 19.94C4.813 19.891 4.086 19.722 3.45 19.475C2.7825 19.2241 2.17777 18.8306 1.678 18.322C1.16936 17.8222 0.775874 17.2175 0.525 16.55C0.278 15.914 0.109 15.187 0.0599999 14.123C0.0129999 13.099 0 12.744 0 10.315V9.685C0 7.255 0.0129999 6.901 0.0599999 5.877C0.109 4.813 0.278 4.086 0.525 3.45C0.775874 2.7825 1.16936 2.17777 1.678 1.678C2.17777 1.16936 2.7825 0.775874 3.45 0.525C4.086 0.278 4.813 0.109 5.877 0.0599999C6.901 0.0129999 7.256 0 9.685 0H10.315ZM10.234 1.802H9.766C7.31 1.802 6.982 1.813 5.959 1.86C4.984 1.905 4.455 2.067 4.102 2.204C3.635 2.386 3.302 2.602 2.952 2.952C2.602 3.302 2.386 3.635 2.204 4.102C2.067 4.455 1.904 4.984 1.86 5.959C1.813 6.982 1.802 7.31 1.802 9.766V10.234C1.802 12.69 1.813 13.018 1.86 14.041C1.905 15.016 2.067 15.545 2.204 15.898C2.386 16.364 2.603 16.698 2.952 17.048C3.302 17.398 3.635 17.614 4.102 17.796C4.455 17.933 4.984 18.096 5.959 18.14C7.013 18.188 7.329 18.198 10 18.198H10.08C12.677 18.198 12.997 18.188 14.04 18.14C15.016 18.095 15.545 17.933 15.898 17.796C16.364 17.614 16.698 17.398 17.048 17.048C17.398 16.698 17.614 16.365 17.796 15.898C17.933 15.545 18.096 15.016 18.14 14.041C18.188 12.986 18.198 12.671 18.198 10V9.92C18.198 7.323 18.188 7.003 18.14 5.96C18.095 4.984 17.933 4.455 17.796 4.102C17.6358 3.66757 17.3802 3.2746 17.048 2.952C16.7254 2.61986 16.3324 2.36426 15.898 2.204C15.545 2.067 15.016 1.904 14.041 1.86C13.018 1.813 12.69 1.802 10.234 1.802ZM10 4.865C10.6743 4.865 11.3421 4.99782 11.9651 5.25588C12.5881 5.51394 13.1542 5.89218 13.631 6.36901C14.1078 6.84584 14.4861 7.41191 14.7441 8.03492C15.0022 8.65793 15.135 9.32566 15.135 10C15.135 10.6743 15.0022 11.3421 14.7441 11.9651C14.4861 12.5881 14.1078 13.1542 13.631 13.631C13.1542 14.1078 12.5881 14.4861 11.9651 14.7441C11.3421 15.0022 10.6743 15.135 10 15.135C8.63811 15.135 7.33201 14.594 6.36901 13.631C5.40601 12.668 4.865 11.3619 4.865 10C4.865 8.63811 5.40601 7.33201 6.36901 6.36901C7.33201 5.40601 8.63811 4.865 10 4.865ZM10 6.667C9.11603 6.667 8.26827 7.01815 7.64321 7.64321C7.01815 8.26827 6.667 9.11603 6.667 10C6.667 10.884 7.01815 11.7317 7.64321 12.3568C8.26827 12.9818 9.11603 13.333 10 13.333C10.884 13.333 11.7317 12.9818 12.3568 12.3568C12.9818 11.7317 13.333 10.884 13.333 10C13.333 9.11603 12.9818 8.26827 12.3568 7.64321C11.7317 7.01815 10.884 6.667 10 6.667ZM15.338 3.462C15.6563 3.462 15.9615 3.58843 16.1865 3.81347C16.4116 4.03852 16.538 4.34374 16.538 4.662C16.538 4.98026 16.4116 5.28548 16.1865 5.51053C15.9615 5.73557 15.6563 5.862 15.338 5.862C15.0197 5.862 14.7145 5.73557 14.4895 5.51053C14.2644 5.28548 14.138 4.98026 14.138 4.662C14.138 4.34374 14.2644 4.03852 14.4895 3.81347C14.7145 3.58843 15.0197 3.462 15.338 3.462Z\" fill=\"#B7B7B7\"/>\\n</svg>\\n',withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ae3uqi\",\"data-framer-name\":\"Footers/Social link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hcjdvk\",\"data-framer-name\":\"Footers/Social icon\",whileHover:animation4,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/eat.app.restaurant.reservations/\",motionChild:true,nodeId:\"nYJsAROsZ\",openInNewTab:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-13y1bd3 framer-u3qtyo\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 10C20 4.477 15.523 0 10 0C4.477 0 0 4.477 0 10C0 14.991 3.657 19.128 8.438 19.878V12.891H5.898V10H8.438V7.797C8.438 5.291 9.93 3.907 12.215 3.907C13.309 3.907 14.453 4.102 14.453 4.102V6.562H13.193C11.95 6.562 11.563 7.333 11.563 8.124V10H14.336L13.893 12.89H11.563V19.878C16.343 19.128 20 14.991 20 10Z\" fill=\"#B7B7B7\"/>\\n</svg>\\n',withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l0a8an\",whileHover:animation4,children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/eatappco\",motionChild:true,nodeId:\"M4Vgo9Vrg\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1sk02mu framer-u3qtyo\",\"data-framer-name\":\"logo 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_121_2236)\">\\n<path d=\"M11.5103 8.46429L18.7103 0H17.0041L10.7524 7.34942L5.75913 0H0L7.55079 11.1136L0 19.9897H1.70627L8.30828 12.2285L13.5815 19.9897H19.3407L11.5099 8.46429H11.5103ZM9.17336 11.2115L8.4083 10.1049L2.32106 1.29901H4.94178L9.85426 8.40562L10.6193 9.51229L17.005 18.7498H14.3842L9.17336 11.212V11.2115Z\" fill=\"#B7B7B7\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_121_2236\">\\n<rect width=\"19.3407\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ln4bry\",whileHover:animation4,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCh6BqA1lGljj3cixt3PQwJA\",motionChild:true,nodeId:\"VxmihFr4n\",openInNewTab:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1lwjyls framer-u3qtyo\",\"data-framer-name\":\"mdi:youtube\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 10 15 L 15.19 12 L 10 9 Z M 21.56 7.17 C 21.69 7.64 21.78 8.27 21.84 9.07 C 21.91 9.87 21.94 10.56 21.94 11.16 L 22 12 C 22 14.19 21.84 15.8 21.56 16.83 C 21.31 17.73 20.73 18.31 19.83 18.56 C 19.36 18.69 18.5 18.78 17.18 18.84 C 15.88 18.91 14.69 18.94 13.59 18.94 L 12 19 C 7.81 19 5.2 18.84 4.17 18.56 C 3.27 18.31 2.69 17.73 2.44 16.83 C 2.31 16.36 2.22 15.73 2.16 14.93 C 2.09 14.13 2.06 13.44 2.06 12.84 L 2 12 C 2 9.81 2.16 8.2 2.44 7.17 C 2.69 6.27 3.27 5.69 4.17 5.44 C 4.64 5.31 5.5 5.22 6.82 5.16 C 8.12 5.09 9.31 5.06 10.41 5.06 L 12 5 C 16.19 5 18.8 5.16 19.83 5.44 C 20.73 5.69 21.31 6.27 21.56 7.17 Z\" fill=\"rgb(183,183,183)\"></path></svg>',svgContentId:9004005703,withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jhhyen\",whileHover:animation4,children:/*#__PURE__*/_jsx(Link,{href:\"https://ae.linkedin.com/company/eat-app\",motionChild:true,nodeId:\"x5E9dEFc8\",openInNewTab:true,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1f3i7wy framer-u3qtyo\",\"data-framer-name\":\"mdi:linkedin\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19 3 C 19.53 3 20.039 3.211 20.414 3.586 C 20.789 3.961 21 4.47 21 5 L 21 19 C 21 19.53 20.789 20.039 20.414 20.414 C 20.039 20.789 19.53 21 19 21 L 5 21 C 4.47 21 3.961 20.789 3.586 20.414 C 3.211 20.039 3 19.53 3 19 L 3 5 C 3 4.47 3.211 3.961 3.586 3.586 C 3.961 3.211 4.47 3 5 3 Z M 18.5 18.5 L 18.5 13.2 C 18.5 12.335 18.157 11.506 17.545 10.895 C 16.934 10.284 16.105 9.94 15.24 9.94 C 14.39 9.94 13.4 10.46 12.92 11.24 L 12.92 10.13 L 10.13 10.13 L 10.13 18.5 L 12.92 18.5 L 12.92 13.57 C 12.92 12.8 13.54 12.17 14.31 12.17 C 14.681 12.17 15.037 12.318 15.3 12.58 C 15.563 12.843 15.71 13.199 15.71 13.57 L 15.71 18.5 Z M 6.88 8.56 C 7.326 8.56 7.753 8.383 8.068 8.068 C 8.383 7.753 8.56 7.326 8.56 6.88 C 8.56 5.95 7.81 5.19 6.88 5.19 C 6.432 5.19 6.002 5.368 5.685 5.685 C 5.368 6.002 5.19 6.432 5.19 6.88 C 5.19 7.81 5.95 8.56 6.88 8.56 Z M 8.27 18.5 L 8.27 10.13 L 5.5 10.13 L 5.5 18.5 Z\" fill=\"rgb(183,183,183)\"></path></svg>',svgContentId:11138513319,withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ywc0m\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-113fcsy\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rj3e4a\",\"data-framer-name\":\"Footers/Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Features\"})}),className:\"framer-jb3lit\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hsw9k8\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nekkqh-container\",nodeId:\"mNOqx4Lef\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Link1,{height:\"100%\",id:\"mNOqx4Lef\",layoutId:\"mNOqx4Lef\",link:\"https://restaurant.eatapp.co/restaurant-reservation-software?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Reservation+system\",style:{width:\"100%\"},title:\"Reservation system\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fr7ue-container\",nodeId:\"RZqiIMICN\",scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(Link1,{height:\"100%\",id:\"RZqiIMICN\",layoutId:\"RZqiIMICN\",link:\"https://restaurant.eatapp.co/table-management?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Table+management\",style:{width:\"100%\"},title:\"Table management\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rsb4p9\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/crm-restaurants?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=CRM\",motionChild:true,nodeId:\"in73VKIJG\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"CRM and guest profiles\"})})})}),className:\"framer-1vdhukd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k9cdnh\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/restaurant-marketing?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Marketing\",motionChild:true,nodeId:\"nzrEOmchU\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Marketing\"})})})}),className:\"framer-199n6og\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o9hisp\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/analytics?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Reports\",motionChild:true,nodeId:\"GWwvyGQb9\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Reports & trends\"})})})}),className:\"framer-38cu5t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b85low\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/waitlist?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Waitlist\",motionChild:true,nodeId:\"R0nk_mZBs\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Waitlist\"})})})}),className:\"framer-10oq67c\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tjatwi\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://eatapp.co/integrations?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Integrations\",motionChild:true,nodeId:\"MOdC7d7WS\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Integrations\"})})})}),className:\"framer-1sfv815\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5mbksu\",\"data-framer-name\":\"Footers/Text link\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3nsgai\",\"data-framer-name\":\"Footers/Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Company\"})}),className:\"framer-q80slq\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j0ar2n\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c7k5a8\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/about?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=About+us\",motionChild:true,nodeId:\"nob3lwnDl\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"About us\"})})})}),className:\"framer-mobpkm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s1x41t\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/contact-us?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Contact+us\",motionChild:true,nodeId:\"pqW2NmDHc\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Contact us\"})})})}),className:\"framer-wc72gu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w0xpc1\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/privacy?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Privacy\",motionChild:true,nodeId:\"utGkFEO6F\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Privacy policy\"})})})}),className:\"framer-1ld2vab\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-166t8g1\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/terms?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Terms+of+service\",motionChild:true,nodeId:\"ETUTsAXOb\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Terms of service\"})})})}),className:\"framer-9na9sg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xnz178\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://careers.eatapp.co/?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Careers\",motionChild:true,nodeId:\"Y4QB48rnG\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Careers\"})})})}),className:\"framer-1cxbvuh\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jzq08f\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/demo?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Demo\",motionChild:true,nodeId:\"FTwVFL9vC\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Demo\"})})})}),className:\"framer-157ib8n\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3b1rv3\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/pricing?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Pricing\",motionChild:true,nodeId:\"tDQj3Mm81\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Pricing\"})})})}),className:\"framer-9fcf4m\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-af2trg\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lo567j\",\"data-framer-name\":\"Footers/Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Resources\"})}),className:\"framer-zgvna2\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-120mzsm\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-cdbvmo-container\",id:\"cdbvmo\",nodeId:\"xlRCoYMdz\",scopeId:\"ZhQdU20Fr\",children:[/*#__PURE__*/_jsx(Link1,{height:\"100%\",id:\"xlRCoYMdz\",layoutId:\"xlRCoYMdz\",link:\"https://restaurant.eatapp.co/blog/online-restaurant-reservation-systems?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Reservation+systems+compared\",style:{width:\"100%\"},tap:tap3bnx0g({overlay:overlay1}),title:\"The 16 Best Reservation Systems\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-14w0okp\"),\"data-framer-portal-id\":\"cdbvmo\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"XM7TWnk7x\")}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bt9yfa\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/restaurant-marketing-guide?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Guide+to+restaurant+marketing\",motionChild:true,nodeId:\"VXxB_NJpt\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Guide to Restaurant Marketing\"})})})}),className:\"framer-1sonf1p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3fc1wr\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/blog/restaurant-customer-service?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Guide+to+customer+service\",motionChild:true,nodeId:\"RHYc6sh6b\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Guide to Customer Service\"})})})}),className:\"framer-bv7k7t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xe3ie\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/blog/how-to-make-a-restaurant-website-a-complete-guide?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Guide+to+making+a+restaurant+website\",motionChild:true,nodeId:\"QdyF2RYOE\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Guide to Making a Restaurant Website\"})})})}),className:\"framer-1jpxnmg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i6uq69\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/blog?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=All+articles\",motionChild:true,nodeId:\"GunfNjN4c\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"All articles\"})})})}),className:\"framer-1w04zt\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n1f1nc\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-1jy9f0t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sghyos\",\"data-framer-name\":\"Footers/Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Compare us\"})}),className:\"framer-1jgcyhn\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yp2l3q\",\"data-framer-name\":\"Links\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wuyg8i\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/compare?utm_source=Integrations&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Compare\",motionChild:true,nodeId:\"n7nrNAYwm\",openInNewTab:false,relValues:[],scopeId:\"ZhQdU20Fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Compare\"})})})}),className:\"framer-1uhkxkt\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g833h2\",\"data-framer-name\":\"Copyright\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vj6uol\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tbyrzi\",\"data-framer-name\":\"Eat app for business\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Manage your venue on Eat App Business\"})}),className:\"framer-mywpkm\",\"data-framer-name\":\"Manage your venue using Eat App for Business\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vmui2n\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.eatapp.clementine&hl=en-IN\",motionChild:true,nodeId:\"bEIUE0YmT\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1k8ewy3 framer-u3qtyo\",\"data-framer-name\":\"Google Play download\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15q3na1\",\"data-framer-name\":\"Google_Play_Store_badge_EN 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 136 41\"><g><path d=\"M 0 40.131 L 0 0 L 136 0 L 136 40.131 Z\" fill=\"transparent\"></path><path d=\"M 130.961 40.131 L 5.039 40.131 C 2.262 40.131 0 37.869 0 35.115 L 0 5.016 C 0 2.252 2.262 0 5.039 0 L 130.961 0 C 133.736 0 136 2.252 136 5.016 L 136 35.115 C 136 37.869 133.736 40.131 130.961 40.131 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 130.961 0.803 C 133.29 0.803 135.197 2.697 135.197 5.016 L 135.197 35.115 C 135.197 37.434 133.303 39.328 130.961 39.328 L 5.039 39.328 C 2.71 39.328 0.803 37.434 0.803 35.115 L 0.803 5.016 C 0.803 2.697 2.697 0.803 5.039 0.803 Z M 130.961 0 L 5.039 0 C 2.262 0 0 2.262 0 5.016 L 0 35.115 C 0 37.879 2.262 40.131 5.039 40.131 L 130.961 40.131 C 133.736 40.131 136 37.879 136 35.115 L 136 5.016 C 136 2.262 133.736 0 130.961 0 Z\" fill=\"rgb(166,166,166)\"></path><path d=\"M 71.646 13.275 C 70.737 13.275 69.972 12.957 69.366 12.332 C 68.766 11.724 68.431 10.886 68.446 10.03 C 68.446 9.117 68.756 8.344 69.366 7.731 C 69.969 7.105 70.735 6.788 71.643 6.788 C 72.541 6.788 73.307 7.105 73.922 7.731 C 74.533 8.364 74.843 9.137 74.843 10.03 C 74.833 10.946 74.523 11.719 73.922 12.329 C 73.319 12.96 72.554 13.275 71.646 13.275 Z M 44.622 13.275 C 43.734 13.275 42.963 12.962 42.333 12.344 C 41.708 11.729 41.39 10.951 41.39 10.033 C 41.39 9.114 41.708 8.336 42.333 7.721 C 42.951 7.103 43.721 6.79 44.622 6.79 C 45.063 6.79 45.49 6.878 45.901 7.055 C 46.303 7.228 46.631 7.463 46.874 7.751 L 46.934 7.823 L 46.256 8.489 L 46.186 8.406 C 45.803 7.951 45.29 7.728 44.612 7.728 C 44.007 7.728 43.479 7.944 43.044 8.369 C 42.606 8.797 42.383 9.357 42.383 10.035 C 42.383 10.713 42.606 11.274 43.044 11.701 C 43.479 12.127 44.007 12.342 44.612 12.342 C 45.258 12.342 45.801 12.127 46.223 11.701 C 46.474 11.451 46.629 11.101 46.684 10.658 L 44.51 10.658 L 44.51 9.722 L 47.617 9.722 L 47.63 9.808 C 47.652 9.965 47.675 10.128 47.675 10.278 C 47.675 11.141 47.414 11.839 46.899 12.354 C 46.313 12.965 45.548 13.275 44.622 13.275 Z M 80.552 13.143 L 79.594 13.143 L 76.659 8.446 L 76.684 9.292 L 76.684 13.14 L 75.726 13.14 L 75.726 6.923 L 76.82 6.923 L 76.85 6.97 L 79.609 11.394 L 79.584 10.551 L 79.584 6.923 L 80.552 6.923 L 80.552 13.143 Z M 64.445 13.143 L 63.474 13.143 L 63.474 7.859 L 61.791 7.859 L 61.791 6.923 L 66.126 6.923 L 66.126 7.859 L 64.443 7.859 L 64.443 13.143 Z M 61 13.143 L 60.032 13.143 L 60.032 6.923 L 61 6.923 Z M 55.558 13.143 L 54.59 13.143 L 54.59 7.859 L 52.906 7.859 L 52.906 6.923 L 57.242 6.923 L 57.242 7.859 L 55.558 7.859 Z M 52.293 13.133 L 48.58 13.133 L 48.58 6.923 L 52.293 6.923 L 52.293 7.859 L 49.551 7.859 L 49.551 9.565 L 52.025 9.565 L 52.025 10.491 L 49.551 10.491 L 49.551 12.197 L 52.293 12.197 Z M 70.077 11.689 C 70.51 12.122 71.035 12.34 71.646 12.34 C 72.274 12.34 72.787 12.127 73.214 11.689 C 73.64 11.264 73.855 10.706 73.855 10.033 C 73.855 9.36 73.64 8.799 73.217 8.376 C 72.784 7.944 72.256 7.726 71.648 7.726 C 71.02 7.726 70.507 7.939 70.082 8.376 C 69.657 8.802 69.441 9.36 69.441 10.033 C 69.441 10.706 69.654 11.266 70.077 11.689 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 68.355 21.827 C 65.991 21.827 64.074 23.621 64.074 26.095 C 64.074 28.547 66.003 30.363 68.355 30.363 C 70.72 30.363 72.636 28.557 72.636 26.095 C 72.636 23.621 70.72 21.827 68.355 21.827 Z M 68.355 28.672 C 67.062 28.672 65.948 27.601 65.948 26.085 C 65.948 24.547 67.064 23.498 68.355 23.498 C 69.649 23.498 70.762 24.547 70.762 26.085 C 70.765 27.611 69.649 28.672 68.355 28.672 Z M 59.015 21.827 C 56.651 21.827 54.735 23.621 54.735 26.095 C 54.735 28.547 56.664 30.363 59.015 30.363 C 61.38 30.363 63.296 28.557 63.296 26.095 C 63.296 23.621 61.377 21.827 59.015 21.827 Z M 59.015 28.672 C 57.722 28.672 56.608 27.601 56.608 26.085 C 56.608 24.547 57.724 23.498 59.015 23.498 C 60.309 23.498 61.422 24.547 61.422 26.085 C 61.422 27.611 60.309 28.672 59.015 28.672 Z M 47.902 23.13 L 47.902 24.937 L 52.238 24.937 C 52.105 25.95 51.77 26.698 51.257 27.211 C 50.621 27.846 49.641 28.537 47.912 28.537 C 45.247 28.537 43.163 26.385 43.163 23.721 C 43.163 21.056 45.247 18.905 47.912 18.905 C 49.35 18.905 50.399 19.473 51.177 20.198 L 52.458 18.917 C 51.377 17.881 49.938 17.088 47.922 17.088 C 44.267 17.088 41.199 20.066 41.199 23.711 C 41.199 27.366 44.264 30.333 47.922 30.333 C 49.896 30.333 51.377 29.688 52.548 28.472 C 53.741 27.279 54.119 25.595 54.119 24.236 C 54.119 23.813 54.087 23.433 54.019 23.11 L 47.899 23.11 C 47.902 23.108 47.902 23.13 47.902 23.13 Z M 93.359 24.536 C 93.002 23.578 91.921 21.817 89.704 21.817 C 87.507 21.817 85.681 23.546 85.681 26.085 C 85.681 28.482 87.487 30.353 89.917 30.353 C 91.868 30.353 93.004 29.16 93.472 28.46 L 92.023 27.489 C 91.543 28.202 90.875 28.67 89.927 28.67 C 88.969 28.67 88.298 28.234 87.853 27.376 L 93.56 25.012 C 93.56 25.014 93.359 24.536 93.359 24.536 Z M 87.54 25.963 C 87.495 24.314 88.821 23.476 89.769 23.476 C 90.517 23.476 91.14 23.843 91.353 24.379 Z M 82.904 30.098 L 84.778 30.098 L 84.778 17.559 L 82.904 17.559 Z M 79.826 22.775 L 79.759 22.775 C 79.336 22.272 78.533 21.817 77.507 21.817 C 75.378 21.817 73.417 23.691 73.417 26.098 C 73.417 28.495 75.368 30.346 77.507 30.346 C 78.52 30.346 79.336 29.888 79.759 29.375 L 79.826 29.375 L 79.826 29.988 C 79.826 31.617 78.956 32.495 77.552 32.495 C 76.404 32.495 75.691 31.67 75.401 30.979 L 73.772 31.659 C 74.24 32.785 75.488 34.179 77.55 34.179 C 79.746 34.179 81.608 32.885 81.608 29.731 L 81.608 22.072 L 79.836 22.072 L 79.836 22.775 C 79.839 22.775 79.826 22.775 79.826 22.775 Z M 77.675 28.672 C 76.381 28.672 75.3 27.591 75.3 26.098 C 75.3 24.591 76.381 23.501 77.675 23.501 C 78.956 23.501 79.949 24.604 79.949 26.098 C 79.962 27.591 78.958 28.672 77.675 28.672 Z M 102.134 17.559 L 97.653 17.559 L 97.653 30.098 L 99.527 30.098 L 99.527 25.35 L 102.136 25.35 C 104.21 25.35 106.25 23.846 106.25 21.459 C 106.25 19.072 104.218 17.559 102.134 17.559 Z M 102.189 23.598 L 99.524 23.598 L 99.524 19.295 L 102.189 19.295 C 103.592 19.295 104.386 20.453 104.386 21.447 C 104.386 22.43 103.582 23.598 102.189 23.598 Z M 113.76 21.804 C 112.399 21.804 110.996 22.407 110.415 23.721 L 112.077 24.411 C 112.434 23.721 113.09 23.486 113.783 23.486 C 114.754 23.486 115.734 24.066 115.757 25.102 L 115.757 25.235 C 115.422 25.044 114.686 24.754 113.805 24.754 C 112.011 24.754 110.193 25.735 110.193 27.574 C 110.193 29.258 111.664 30.338 113.302 30.338 C 114.561 30.338 115.254 29.771 115.687 29.113 L 115.754 29.113 L 115.754 30.083 L 117.561 30.083 L 117.561 25.28 C 117.561 23.043 115.899 21.804 113.76 21.804 Z M 113.525 28.672 C 112.912 28.672 112.054 28.372 112.054 27.601 C 112.054 26.631 113.125 26.263 114.038 26.263 C 114.864 26.263 115.254 26.44 115.744 26.686 C 115.609 27.811 114.659 28.662 113.525 28.672 Z M 124.151 22.072 L 121.999 27.511 L 121.932 27.511 L 119.702 22.072 L 117.686 22.072 L 121.031 29.675 L 119.124 33.901 L 121.076 33.901 L 126.222 22.072 Z M 107.283 30.098 L 109.157 30.098 L 109.157 17.559 L 107.283 17.559 Z\" fill=\"rgb(255,255,255)\"></path><g><defs><linearGradient id=\"idss9697253289_7g1673948338\" x1=\"1\" x2=\"0\" y1=\"0.36348137279256043\" y2=\"0.6365186272074396\"><stop offset=\"0\" stop-color=\"rgb(0,160,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,227,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 10.469 7.558 C 10.178 7.871 10.011 8.349 10.011 8.975 L 10.011 31.159 C 10.011 31.785 10.178 32.263 10.479 32.563 L 10.556 32.63 L 22.986 20.201 L 22.986 19.923 L 10.546 7.491 Z\" fill=\"url(#idss9697253289_7g1673948338)\"></path></g><g><defs><linearGradient id=\"idss9697253289_8g43703969\" x1=\"1\" x2=\"0\" y1=\"0.4974874371859296\" y2=\"0.5025125628140704\"><stop offset=\"0\" stop-color=\"rgb(255,224,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,156,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.121 24.356 L 22.975 20.211 L 22.975 19.92 L 27.121 15.775 L 27.211 15.83 L 32.115 18.617 C 33.519 19.407 33.519 20.713 32.115 21.514 L 27.211 24.301 Z\" fill=\"url(#idss9697253289_8g43703969)\"></path></g><g><defs><linearGradient id=\"idss9697253289_9g1458251070\" x1=\"0.7924668894653782\" x2=\"0.20753311053462176\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,58,68)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(195,17,98)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.211 24.301 L 22.975 20.066 L 10.468 32.573 C 10.926 33.063 11.694 33.118 12.552 32.64 Z\" fill=\"url(#idss9697253289_9g1458251070)\"></path></g><g><defs><linearGradient id=\"idss9697253289_10g-2043038337\" x1=\"0.20206598087546296\" x2=\"0.797934019124537\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(50,160,113)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,240,118)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.211 15.83 L 12.552 7.503 C 11.694 7.013 10.923 7.08 10.468 7.571 L 22.975 20.066 Z\" fill=\"url(#idss9697253289_10g-2043038337)\"></path></g><path d=\"M 27.121 24.211 L 12.562 32.482 C 11.749 32.95 11.024 32.918 10.556 32.492 L 10.478 32.57 L 10.556 32.638 C 11.024 33.06 11.749 33.095 12.562 32.627 L 27.221 24.301 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 32.115 21.369 L 27.108 24.211 L 27.198 24.301 L 32.102 21.514 C 32.805 21.114 33.151 20.588 33.151 20.066 C 33.108 20.546 32.75 21.001 32.115 21.369 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.12\"></path><path d=\"M 12.553 7.648 L 32.115 18.762 C 32.751 19.12 33.108 19.587 33.163 20.065 C 33.163 19.543 32.818 19.017 32.115 18.617 L 12.553 7.503 C 11.149 6.7 10.011 7.371 10.011 8.974 L 10.011 9.119 C 10.011 7.513 11.149 6.855 12.553 7.648 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.25\"></path></g></svg>',svgContentId:9697253289,withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rj5d_naz1:{href:\"https://apps.apple.com/in/app/eat-app-manager-for-iphone/id1481318419\"}},children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/in/app/eat-app-manager/id928136061\",motionChild:true,nodeId:\"j4ziLl0kL\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kvo469 framer-u3qtyo\",\"data-framer-name\":\"Apple app store download\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bb1pxe\",\"data-framer-name\":\"download-on-the-app-store 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"40\" viewBox=\"0 0 120 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_33_383)\">\\n<path d=\"M110.135 0.00013H9.53468C9.16798 0.00013 8.80568 0.00013 8.43995 0.00213C8.1338 0.00413 7.83009 0.00994 7.521 0.01483C6.84951 0.0227318 6.17961 0.0818063 5.5171 0.19154C4.85552 0.303663 4.21467 0.515046 3.61622 0.81854C3.0185 1.1246 2.47235 1.5223 1.99757 1.9972C1.5203 2.47077 1.12246 3.01815 0.81935 3.61829C0.5154 4.21724 0.304641 4.85907 0.19435 5.52161C0.0830109 6.18332 0.0230984 6.85265 0.01515 7.52361C0.00587 7.83021 0.00489 8.13783 0 8.44447V31.5587C0.00489 31.8692 0.00587 32.17 0.01515 32.4806C0.0231008 33.1516 0.0830134 33.8209 0.19435 34.4825C0.304336 35.1455 0.515108 35.7877 0.81935 36.3868C1.12233 36.985 1.52022 37.5302 1.99757 38.0011C2.47054 38.4781 3.01705 38.8761 3.61622 39.1798C4.21467 39.4841 4.85545 39.6968 5.5171 39.8106C6.17972 39.9195 6.84956 39.9786 7.521 39.9874C7.83009 39.9942 8.1338 39.9981 8.43995 39.9981C8.80567 40.0001 9.168 40.0001 9.53468 40.0001H110.135C110.494 40.0001 110.859 40.0001 111.219 39.9981C111.523 39.9981 111.836 39.9942 112.141 39.9874C112.811 39.9791 113.479 39.92 114.141 39.8106C114.804 39.696 115.448 39.4834 116.049 39.1798C116.647 38.8759 117.193 38.478 117.666 38.0011C118.142 37.5284 118.541 36.9836 118.848 36.3868C119.15 35.7872 119.358 35.1451 119.467 34.4825C119.578 33.8208 119.64 33.1516 119.652 32.4806C119.656 32.17 119.656 31.8692 119.656 31.5587C119.664 31.1954 119.664 30.8341 119.664 30.4649V9.53626C119.664 9.17005 119.664 8.80677 119.656 8.44447C119.656 8.13783 119.656 7.83021 119.652 7.52357C119.64 6.85255 119.578 6.18337 119.467 5.52157C119.358 4.85941 119.149 4.21763 118.848 3.61825C118.23 2.41533 117.252 1.43616 116.049 0.81845C115.448 0.515697 114.804 0.30437 114.141 0.19145C113.48 0.0812328 112.811 0.0221378 112.141 0.01469C111.836 0.00981 111.523 0.00395 111.219 0.002C110.859 0 110.494 0.00013 110.135 0.00013Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M8.44484 39.125C8.14016 39.125 7.84284 39.1211 7.54055 39.1143C6.91433 39.1061 6.28957 39.0516 5.67141 38.9512C5.095 38.8519 4.53661 38.6673 4.01467 38.4033C3.49751 38.1415 3.02582 37.7983 2.61767 37.3867C2.20361 36.98 1.85888 36.5082 1.59716 35.9902C1.33255 35.4688 1.14942 34.9099 1.05416 34.333C0.951281 33.7131 0.895621 33.0863 0.887656 32.458C0.881316 32.2471 0.873016 31.5449 0.873016 31.5449V8.44434C0.873016 8.44434 0.881856 7.75293 0.887706 7.5498C0.895332 6.92248 0.950669 6.29665 1.05324 5.67773C1.14868 5.09925 1.33194 4.53875 1.5967 4.01563C1.85746 3.49794 2.20027 3.02586 2.61184 2.61768C3.02294 2.20562 3.49614 1.8606 4.01418 1.59521C4.53492 1.33209 5.09225 1.14873 5.6675 1.05127C6.28769 0.949836 6.91462 0.894996 7.54301 0.88721L8.44533 0.875H111.214L112.127 0.8877C112.75 0.895099 113.371 0.94945 113.985 1.05029C114.566 1.14898 115.13 1.33362 115.656 1.59814C116.694 2.13299 117.539 2.97916 118.071 4.01807C118.332 4.53758 118.512 5.09351 118.606 5.66699C118.71 6.29099 118.768 6.92174 118.78 7.5542C118.783 7.8374 118.783 8.1416 118.783 8.44434C118.791 8.81934 118.791 9.17627 118.791 9.53613V30.4648C118.791 30.8281 118.791 31.1826 118.783 31.54C118.783 31.8652 118.783 32.1631 118.779 32.4697C118.768 33.0909 118.71 33.7104 118.608 34.3232C118.515 34.9043 118.333 35.4675 118.068 35.9932C117.805 36.5056 117.462 36.9733 117.053 37.3789C116.644 37.7927 116.172 38.1379 115.653 38.4014C115.128 38.6674 114.566 38.8527 113.985 38.9512C113.367 39.0522 112.742 39.1067 112.116 39.1143C111.823 39.1211 111.517 39.125 111.219 39.125L110.135 39.127L8.44484 39.125Z\" fill=\"black\"/>\\n<path d=\"M24.7689 20.3007C24.7796 19.466 25.0013 18.6477 25.4134 17.9217C25.8254 17.1957 26.4143 16.5858 27.1254 16.1486C26.6737 15.5035 26.0777 14.9725 25.3849 14.598C24.6921 14.2234 23.9215 14.0156 23.1343 13.991C21.455 13.8147 19.8271 14.9958 18.9714 14.9958C18.0991 14.9958 16.7816 14.0085 15.3629 14.0376C14.4452 14.0673 13.5509 14.3341 12.767 14.8122C11.9831 15.2903 11.3364 15.9632 10.89 16.7655C8.95595 20.1139 10.3985 25.035 12.2511 27.7416C13.178 29.0669 14.2613 30.5474 15.6788 30.4949C17.0658 30.4374 17.5839 29.6104 19.2582 29.6104C20.9169 29.6104 21.403 30.4949 22.8492 30.4615C24.3376 30.4374 25.2753 29.1303 26.1697 27.7924C26.8357 26.848 27.3481 25.8043 27.6881 24.6999C26.8234 24.3341 26.0855 23.722 25.5664 22.9397C25.0472 22.1574 24.7699 21.2396 24.7689 20.3007Z\" fill=\"white\"/>\\n<path d=\"M22.0372 12.2109C22.8488 11.2367 23.2486 9.98451 23.1518 8.72028C21.9119 8.8505 20.7667 9.44306 19.9442 10.3799C19.542 10.8376 19.234 11.37 19.0378 11.9468C18.8415 12.5235 18.7609 13.1333 18.8005 13.7413C19.4206 13.7477 20.0341 13.6132 20.5948 13.3482C21.1554 13.0831 21.6486 12.6942 22.0372 12.2109Z\" fill=\"white\"/>\\n<path d=\"M42.3022 27.1396H37.5688L36.4321 30.4961H34.4272L38.9106 18.0781H40.9936L45.477 30.4961H43.438L42.3022 27.1396ZM38.0591 25.5908H41.8111L39.9615 20.1435H39.9097L38.0591 25.5908Z\" fill=\"white\"/>\\n<path d=\"M55.1597 25.9697C55.1597 28.7832 53.6538 30.5908 51.3813 30.5908C50.8057 30.6209 50.2332 30.4883 49.7294 30.2082C49.2256 29.928 48.8109 29.5117 48.5327 29.0068H48.4897V33.4912H46.6313V21.4424H48.4302V22.9482H48.4644C48.7553 22.4458 49.177 22.0316 49.6847 21.7497C50.1923 21.4679 50.7668 21.3289 51.3472 21.3476C53.645 21.3477 55.1597 23.1641 55.1597 25.9697ZM53.2495 25.9697C53.2495 24.1367 52.3022 22.9316 50.8569 22.9316C49.437 22.9316 48.4819 24.1621 48.4819 25.9697C48.4819 27.7939 49.437 29.0156 50.8569 29.0156C52.3022 29.0156 53.2495 27.8193 53.2495 25.9697Z\" fill=\"white\"/>\\n<path d=\"M65.1245 25.9697C65.1245 28.7832 63.6187 30.5908 61.3462 30.5908C60.7705 30.6209 60.198 30.4883 59.6942 30.2082C59.1905 29.928 58.7757 29.5117 58.4976 29.0068H58.4546V33.4912H56.5962V21.4424H58.395V22.9482H58.4292C58.7201 22.4458 59.1418 22.0316 59.6495 21.7497C60.1571 21.4679 60.7317 21.3289 61.312 21.3476C63.6099 21.3476 65.1245 23.164 65.1245 25.9697ZM63.2144 25.9697C63.2144 24.1367 62.2671 22.9316 60.8218 22.9316C59.4018 22.9316 58.4468 24.1621 58.4468 25.9697C58.4468 27.7939 59.4018 29.0156 60.8218 29.0156C62.2671 29.0156 63.2144 27.8193 63.2144 25.9697Z\" fill=\"white\"/>\\n<path d=\"M71.7104 27.0361C71.8481 28.2676 73.0444 29.0761 74.6792 29.0761C76.2456 29.0761 77.3726 28.2675 77.3726 27.1572C77.3726 26.1933 76.6929 25.6162 75.0835 25.2207L73.4741 24.833C71.1939 24.2822 70.1353 23.2158 70.1353 21.4853C70.1353 19.3427 72.0024 17.871 74.6538 17.871C77.2778 17.871 79.0767 19.3427 79.1372 21.4853H77.2612C77.1489 20.246 76.1245 19.498 74.6274 19.498C73.1303 19.498 72.1059 20.2548 72.1059 21.3564C72.1059 22.2343 72.7602 22.7509 74.3608 23.1464L75.729 23.4823C78.2768 24.0849 79.3354 25.1083 79.3354 26.9247C79.3354 29.248 77.4848 30.703 74.5415 30.703C71.7876 30.703 69.9282 29.2821 69.8081 27.036L71.7104 27.0361Z\" fill=\"white\"/>\\n<path d=\"M83.3462 19.2998V21.4424H85.0679V22.9141H83.3462V27.9053C83.3462 28.6807 83.6909 29.042 84.4477 29.042C84.6521 29.0384 84.8562 29.0241 85.0591 28.999V30.4619C84.7188 30.5255 84.3729 30.5543 84.0268 30.5478C82.1938 30.5478 81.479 29.8593 81.479 28.1035V22.9141H80.1626V21.4424H81.479V19.2998H83.3462Z\" fill=\"white\"/>\\n<path d=\"M86.065 25.9697C86.065 23.1211 87.7427 21.3311 90.3589 21.3311C92.9839 21.3311 94.6538 23.1211 94.6538 25.9697C94.6538 28.8262 92.9927 30.6084 90.3589 30.6084C87.7261 30.6084 86.065 28.8262 86.065 25.9697ZM92.7603 25.9697C92.7603 24.0156 91.8648 22.8623 90.3589 22.8623C88.853 22.8623 87.9585 24.0244 87.9585 25.9697C87.9585 27.9316 88.853 29.0762 90.3589 29.0762C91.8648 29.0762 92.7603 27.9316 92.7603 25.9697Z\" fill=\"white\"/>\\n<path d=\"M96.186 21.4424H97.9585V22.9834H98.0015C98.1214 22.5021 98.4034 22.0768 98.8 21.7789C99.1966 21.481 99.6836 21.3287 100.179 21.3476C100.393 21.3469 100.607 21.3702 100.816 21.417V23.1553C100.546 23.0726 100.264 23.0347 99.981 23.043C99.711 23.032 99.4418 23.0796 99.192 23.1825C98.9421 23.2854 98.7175 23.4411 98.5335 23.639C98.3496 23.8369 98.2106 24.0723 98.1262 24.3289C98.0417 24.5856 98.0139 24.8575 98.0444 25.126V30.4961H96.186L96.186 21.4424Z\" fill=\"white\"/>\\n<path d=\"M109.384 27.8369C109.134 29.4805 107.534 30.6084 105.486 30.6084C102.852 30.6084 101.217 28.8437 101.217 26.0127C101.217 23.1729 102.861 21.3311 105.408 21.3311C107.913 21.3311 109.488 23.0518 109.488 25.7969V26.4336H103.093V26.5459C103.064 26.8791 103.105 27.2148 103.216 27.5306C103.326 27.8464 103.502 28.1352 103.732 28.3778C103.963 28.6203 104.242 28.8111 104.552 28.9374C104.861 29.0637 105.195 29.1226 105.529 29.1103C105.968 29.1515 106.409 29.0498 106.785 28.8203C107.162 28.5909 107.455 28.246 107.62 27.8369L109.384 27.8369ZM103.102 25.1348H107.628C107.645 24.8352 107.6 24.5354 107.495 24.2541C107.39 23.9729 107.229 23.7164 107.02 23.5006C106.812 23.2849 106.561 23.1145 106.283 23.0003C106.006 22.8861 105.708 22.8305 105.408 22.8369C105.105 22.8351 104.805 22.8933 104.525 23.008C104.245 23.1227 103.99 23.2918 103.776 23.5054C103.562 23.7191 103.392 23.973 103.276 24.2527C103.16 24.5323 103.101 24.8321 103.102 25.1348Z\" fill=\"white\"/>\\n<path d=\"M37.8262 8.73101C38.2158 8.70305 38.6068 8.76191 38.9709 8.90335C39.335 9.04478 39.6632 9.26526 39.9318 9.54889C40.2004 9.83251 40.4026 10.1722 40.524 10.5435C40.6455 10.9148 40.6829 11.3083 40.6338 11.6959C40.6338 13.6021 39.6035 14.6979 37.8262 14.6979H35.6709V8.73101H37.8262ZM36.5977 13.854H37.7227C38.0011 13.8707 38.2797 13.825 38.5382 13.7204C38.7968 13.6158 39.0287 13.4548 39.2172 13.2493C39.4057 13.0437 39.546 12.7987 39.6279 12.5321C39.7097 12.2655 39.7311 11.9839 39.6904 11.708C39.7282 11.4332 39.7046 11.1534 39.6215 10.8887C39.5384 10.6241 39.3977 10.3811 39.2097 10.1771C39.0216 9.97322 38.7908 9.81341 38.5337 9.70917C38.2766 9.60494 37.9997 9.55885 37.7227 9.57422H36.5977V13.854Z\" fill=\"white\"/>\\n<path d=\"M41.6807 12.4443C41.6524 12.1484 41.6862 11.8499 41.7801 11.5678C41.8739 11.2857 42.0257 11.0264 42.2256 10.8064C42.4256 10.5864 42.6693 10.4107 42.9411 10.2904C43.213 10.1701 43.507 10.108 43.8042 10.108C44.1015 10.108 44.3955 10.1701 44.6673 10.2904C44.9392 10.4107 45.1829 10.5864 45.3828 10.8064C45.5828 11.0264 45.7345 11.2857 45.8284 11.5678C45.9222 11.8499 45.9561 12.1484 45.9278 12.4443C45.9566 12.7406 45.9232 13.0396 45.8296 13.3221C45.736 13.6046 45.5843 13.8644 45.3843 14.0848C45.1843 14.3052 44.9404 14.4814 44.6683 14.6019C44.3962 14.7225 44.1019 14.7847 43.8042 14.7847C43.5066 14.7847 43.2123 14.7225 42.9402 14.6019C42.668 14.4814 42.4241 14.3052 42.2241 14.0848C42.0242 13.8644 41.8725 13.6046 41.7789 13.3221C41.6853 13.0396 41.6519 12.7406 41.6807 12.4443ZM45.0137 12.4443C45.0137 11.4683 44.5752 10.8975 43.8057 10.8975C43.0332 10.8975 42.5987 11.4683 42.5987 12.4444C42.5987 13.4282 43.0333 13.9946 43.8057 13.9946C44.5752 13.9946 45.0137 13.4243 45.0137 12.4443Z\" fill=\"white\"/>\\n<path d=\"M51.5733 14.6978H50.6514L49.7207 11.3813H49.6504L48.7237 14.6978H47.8106L46.5694 10.1948H47.4707L48.2774 13.6308H48.3438L49.2696 10.1948H50.1221L51.0479 13.6308H51.1182L51.9209 10.1948H52.8096L51.5733 14.6978Z\" fill=\"white\"/>\\n<path d=\"M53.8536 10.1948H54.709V10.9102H54.7754C54.8881 10.6532 55.0781 10.4379 55.319 10.2941C55.5598 10.1503 55.8396 10.0852 56.1192 10.1079C56.3383 10.0914 56.5583 10.1245 56.7629 10.2046C56.9675 10.2847 57.1514 10.4098 57.3011 10.5706C57.4508 10.7315 57.5624 10.9239 57.6276 11.1337C57.6928 11.3436 57.7099 11.5654 57.6778 11.7827V14.6977H56.7891V12.0059C56.7891 11.2822 56.4746 10.9224 55.8174 10.9224C55.6687 10.9154 55.5202 10.9408 55.3821 10.9966C55.244 11.0524 55.1197 11.1375 55.0176 11.2458C54.9154 11.3542 54.838 11.4834 54.7904 11.6245C54.7429 11.7657 54.7265 11.9154 54.7422 12.0635V14.6978H53.8535L53.8536 10.1948Z\" fill=\"white\"/>\\n<path d=\"M59.0938 8.43701H59.9825V14.6978H59.0938V8.43701Z\" fill=\"white\"/>\\n<path d=\"M61.2178 12.4443C61.1895 12.1484 61.2234 11.8498 61.3172 11.5677C61.4111 11.2857 61.5629 11.0263 61.7628 10.8063C61.9628 10.5863 62.2065 10.4106 62.4784 10.2903C62.7503 10.17 63.0443 10.1079 63.3416 10.1079C63.6389 10.1079 63.9329 10.17 64.2047 10.2903C64.4766 10.4106 64.7203 10.5863 64.9203 10.8063C65.1203 11.0263 65.272 11.2857 65.3659 11.5677C65.4598 11.8498 65.4936 12.1484 65.4653 12.4443C65.4942 12.7406 65.4607 13.0396 65.3671 13.3221C65.2734 13.6046 65.1217 13.8644 64.9217 14.0848C64.7217 14.3052 64.4778 14.4814 64.2057 14.6019C63.9335 14.7224 63.6392 14.7847 63.3416 14.7847C63.0439 14.7847 62.7496 14.7224 62.4775 14.6019C62.2053 14.4814 61.9614 14.3052 61.7614 14.0848C61.5614 13.8644 61.4097 13.6046 61.3161 13.3221C61.2225 13.0396 61.189 12.7406 61.2178 12.4443ZM64.5508 12.4443C64.5508 11.4683 64.1123 10.8975 63.3428 10.8975C62.5703 10.8975 62.1358 11.4683 62.1358 12.4444C62.1358 13.4282 62.5704 13.9946 63.3428 13.9946C64.1123 13.9946 64.5508 13.4243 64.5508 12.4443Z\" fill=\"white\"/>\\n<path d=\"M66.4009 13.4243C66.4009 12.6138 67.0044 12.1465 68.0757 12.0801L69.2954 12.0098V11.6211C69.2954 11.1455 68.981 10.877 68.3736 10.877C67.8775 10.877 67.5337 11.0591 67.4351 11.3775H66.5747C66.6656 10.604 67.3931 10.1079 68.4146 10.1079C69.5435 10.1079 70.1802 10.6699 70.1802 11.6211V14.6978H69.3247V14.065H69.2544C69.1117 14.292 68.9113 14.477 68.6737 14.6012C68.4361 14.7254 68.1697 14.7844 67.9019 14.772C67.7129 14.7916 67.5218 14.7715 67.341 14.7128C67.1603 14.6541 66.9938 14.5581 66.8524 14.4312C66.711 14.3042 66.5977 14.149 66.52 13.9756C66.4422 13.8022 66.4017 13.6144 66.4009 13.4243ZM69.2954 13.0396V12.6631L68.1958 12.7334C67.5757 12.7749 67.2945 12.9859 67.2945 13.3828C67.2945 13.7881 67.646 14.0239 68.1295 14.0239C68.2711 14.0383 68.4142 14.024 68.5502 13.9819C68.6862 13.9398 68.8123 13.8708 68.9211 13.7789C69.0299 13.6871 69.1191 13.5743 69.1834 13.4473C69.2477 13.3203 69.2858 13.1816 69.2954 13.0396Z\" fill=\"white\"/>\\n<path d=\"M71.3482 12.4444C71.3482 11.0215 72.0796 10.1201 73.2173 10.1201C73.4987 10.1072 73.778 10.1746 74.0226 10.3145C74.2671 10.4544 74.4667 10.661 74.5982 10.9101H74.6646V8.43701H75.5533V14.6978H74.7017V13.9863H74.6314C74.4898 14.2338 74.2832 14.4378 74.0339 14.5763C73.7847 14.7148 73.5023 14.7825 73.2173 14.772C72.0718 14.772 71.3482 13.8706 71.3482 12.4444ZM72.2662 12.4444C72.2662 13.3994 72.7164 13.9741 73.4693 13.9741C74.2183 13.9741 74.6812 13.3911 74.6812 12.4483C74.6812 11.5098 74.2134 10.9185 73.4693 10.9185C72.7212 10.9185 72.2662 11.4971 72.2662 12.4444Z\" fill=\"white\"/>\\n<path d=\"M79.23 12.4443C79.2017 12.1484 79.2356 11.8499 79.3294 11.5678C79.4232 11.2857 79.575 11.0264 79.7749 10.8064C79.9749 10.5864 80.2186 10.4107 80.4904 10.2904C80.7623 10.1701 81.0563 10.108 81.3536 10.108C81.6508 10.108 81.9448 10.1701 82.2167 10.2904C82.4885 10.4107 82.7322 10.5864 82.9322 10.8064C83.1321 11.0264 83.2839 11.2857 83.3777 11.5678C83.4715 11.8499 83.5054 12.1484 83.4771 12.4443C83.5059 12.7406 83.4725 13.0396 83.3789 13.3221C83.2853 13.6046 83.1336 13.8644 82.9336 14.0848C82.7336 14.3052 82.4897 14.4814 82.2176 14.6019C81.9455 14.7225 81.6512 14.7847 81.3536 14.7847C81.0559 14.7847 80.7616 14.7225 80.4895 14.6019C80.2173 14.4814 79.9735 14.3052 79.7735 14.0848C79.5735 13.8644 79.4218 13.6046 79.3282 13.3221C79.2346 13.0396 79.2012 12.7406 79.23 12.4443ZM82.563 12.4443C82.563 11.4683 82.1245 10.8975 81.355 10.8975C80.5826 10.8975 80.148 11.4683 80.148 12.4444C80.148 13.4282 80.5826 13.9946 81.355 13.9946C82.1245 13.9946 82.563 13.4243 82.563 12.4443Z\" fill=\"white\"/>\\n<path d=\"M84.6695 10.1948H85.5249V10.9102H85.5913C85.704 10.6532 85.894 10.4379 86.1349 10.2941C86.3757 10.1503 86.6555 10.0852 86.9351 10.1079C87.1542 10.0914 87.3742 10.1245 87.5788 10.2046C87.7834 10.2847 87.9673 10.4098 88.117 10.5706C88.2667 10.7315 88.3783 10.9239 88.4435 11.1337C88.5087 11.3436 88.5258 11.5654 88.4937 11.7827V14.6977H87.605V12.0059C87.605 11.2822 87.2906 10.9224 86.6333 10.9224C86.4846 10.9154 86.3361 10.9408 86.198 10.9966C86.06 11.0524 85.9356 11.1375 85.8335 11.2458C85.7314 11.3542 85.6539 11.4834 85.6064 11.6245C85.5588 11.7657 85.5424 11.9154 85.5581 12.0635V14.6978H84.6695V10.1948Z\" fill=\"white\"/>\\n<path d=\"M93.5152 9.07373V10.2153H94.4908V10.9639H93.5152V13.2793C93.5152 13.751 93.7095 13.9575 94.1519 13.9575C94.2651 13.9572 94.3783 13.9503 94.4908 13.937V14.6772C94.3312 14.7058 94.1695 14.721 94.0074 14.7226C93.0191 14.7226 92.6255 14.375 92.6255 13.5068V10.9638H91.9107V10.2153H92.6255V9.07373H93.5152Z\" fill=\"white\"/>\\n<path d=\"M95.7046 8.43701H96.5855V10.9185H96.6558C96.7739 10.6591 96.9691 10.4425 97.2148 10.2982C97.4605 10.1539 97.7448 10.0888 98.0288 10.1118C98.2467 10.1 98.4646 10.1364 98.6669 10.2184C98.8692 10.3004 99.0509 10.4261 99.199 10.5864C99.3471 10.7468 99.458 10.9378 99.5238 11.146C99.5896 11.3541 99.6086 11.5742 99.5796 11.7905V14.6978H98.69V12.0098C98.69 11.2905 98.355 10.9263 97.7271 10.9263C97.5744 10.9137 97.4207 10.9347 97.277 10.9878C97.1332 11.0408 97.0027 11.1247 96.8948 11.2334C96.7868 11.3421 96.7038 11.4732 96.6518 11.6173C96.5997 11.7614 96.5798 11.9152 96.5933 12.0679V14.6977H95.7047L95.7046 8.43701Z\" fill=\"white\"/>\\n<path d=\"M104.761 13.4819C104.641 13.8935 104.379 14.2495 104.022 14.4876C103.666 14.7258 103.236 14.8309 102.81 14.7847C102.513 14.7925 102.219 14.7357 101.946 14.6182C101.674 14.5006 101.43 14.3252 101.232 14.1041C101.034 13.8829 100.887 13.6214 100.8 13.3376C100.713 13.0537 100.689 12.7544 100.73 12.4605C100.691 12.1656 100.715 11.8656 100.801 11.581C100.888 11.2963 101.034 11.0335 101.231 10.8105C101.428 10.5874 101.671 10.4092 101.942 10.288C102.214 10.1668 102.509 10.1054 102.806 10.1079C104.059 10.1079 104.815 10.9639 104.815 12.3779V12.688H101.635V12.7378C101.621 12.9031 101.642 13.0694 101.696 13.2261C101.75 13.3829 101.837 13.5266 101.95 13.6481C102.062 13.7695 102.2 13.866 102.352 13.9314C102.504 13.9968 102.669 14.0297 102.835 14.0278C103.047 14.0533 103.262 14.0151 103.453 13.9178C103.644 13.8206 103.802 13.6689 103.906 13.4819L104.761 13.4819ZM101.635 12.0308H103.91C103.921 11.8796 103.9 11.7278 103.849 11.5851C103.798 11.4424 103.718 11.3119 103.614 11.2021C103.509 11.0922 103.383 11.0054 103.243 10.9472C103.103 10.8891 102.953 10.8608 102.801 10.8643C102.648 10.8623 102.495 10.8912 102.353 10.9491C102.21 11.0071 102.081 11.0929 101.972 11.2017C101.864 11.3104 101.778 11.4397 101.72 11.5821C101.662 11.7245 101.633 11.8771 101.635 12.0308Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_33_383\">\\n<rect width=\"119.664\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6qlsuy\",\"data-framer-name\":\"Frame 2608260\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Make a reservation using Eat App\"})}),className:\"framer-13v4nkf\",\"data-framer-name\":\"Make a reservation using Eat App\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cc7ksf\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.eatapp.consumer&hl=en-IN\",motionChild:true,nodeId:\"g2dgxmJdL\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-pph828 framer-u3qtyo\",\"data-framer-name\":\"Google Play download\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1n1pgfh\",\"data-framer-name\":\"Google_Play_Store_badge_EN 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 136 41\"><g><path d=\"M 0 40.131 L 0 0 L 136 0 L 136 40.131 Z\" fill=\"transparent\"></path><path d=\"M 130.961 40.131 L 5.039 40.131 C 2.262 40.131 0 37.869 0 35.115 L 0 5.016 C 0 2.252 2.262 0 5.039 0 L 130.961 0 C 133.736 0 136 2.252 136 5.016 L 136 35.115 C 136 37.869 133.736 40.131 130.961 40.131 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 130.961 0.803 C 133.29 0.803 135.197 2.697 135.197 5.016 L 135.197 35.115 C 135.197 37.434 133.303 39.328 130.961 39.328 L 5.039 39.328 C 2.71 39.328 0.803 37.434 0.803 35.115 L 0.803 5.016 C 0.803 2.697 2.697 0.803 5.039 0.803 Z M 130.961 0 L 5.039 0 C 2.262 0 0 2.262 0 5.016 L 0 35.115 C 0 37.879 2.262 40.131 5.039 40.131 L 130.961 40.131 C 133.736 40.131 136 37.879 136 35.115 L 136 5.016 C 136 2.262 133.736 0 130.961 0 Z\" fill=\"rgb(166,166,166)\"></path><path d=\"M 71.646 13.275 C 70.737 13.275 69.972 12.957 69.366 12.332 C 68.766 11.724 68.431 10.886 68.446 10.03 C 68.446 9.117 68.756 8.344 69.366 7.731 C 69.969 7.105 70.735 6.788 71.643 6.788 C 72.541 6.788 73.307 7.105 73.922 7.731 C 74.533 8.364 74.843 9.137 74.843 10.03 C 74.833 10.946 74.523 11.719 73.922 12.329 C 73.319 12.96 72.554 13.275 71.646 13.275 Z M 44.622 13.275 C 43.734 13.275 42.963 12.962 42.333 12.344 C 41.708 11.729 41.39 10.951 41.39 10.033 C 41.39 9.114 41.708 8.336 42.333 7.721 C 42.951 7.103 43.721 6.79 44.622 6.79 C 45.063 6.79 45.49 6.878 45.901 7.055 C 46.303 7.228 46.631 7.463 46.874 7.751 L 46.934 7.823 L 46.256 8.489 L 46.186 8.406 C 45.803 7.951 45.29 7.728 44.612 7.728 C 44.007 7.728 43.479 7.944 43.044 8.369 C 42.606 8.797 42.383 9.357 42.383 10.035 C 42.383 10.713 42.606 11.274 43.044 11.701 C 43.479 12.127 44.007 12.342 44.612 12.342 C 45.258 12.342 45.801 12.127 46.223 11.701 C 46.474 11.451 46.629 11.101 46.684 10.658 L 44.51 10.658 L 44.51 9.722 L 47.617 9.722 L 47.63 9.808 C 47.652 9.965 47.675 10.128 47.675 10.278 C 47.675 11.141 47.414 11.839 46.899 12.354 C 46.313 12.965 45.548 13.275 44.622 13.275 Z M 80.552 13.143 L 79.594 13.143 L 76.659 8.446 L 76.684 9.292 L 76.684 13.14 L 75.726 13.14 L 75.726 6.923 L 76.82 6.923 L 76.85 6.97 L 79.609 11.394 L 79.584 10.551 L 79.584 6.923 L 80.552 6.923 L 80.552 13.143 Z M 64.445 13.143 L 63.474 13.143 L 63.474 7.859 L 61.791 7.859 L 61.791 6.923 L 66.126 6.923 L 66.126 7.859 L 64.443 7.859 L 64.443 13.143 Z M 61 13.143 L 60.032 13.143 L 60.032 6.923 L 61 6.923 Z M 55.558 13.143 L 54.59 13.143 L 54.59 7.859 L 52.906 7.859 L 52.906 6.923 L 57.242 6.923 L 57.242 7.859 L 55.558 7.859 Z M 52.293 13.133 L 48.58 13.133 L 48.58 6.923 L 52.293 6.923 L 52.293 7.859 L 49.551 7.859 L 49.551 9.565 L 52.025 9.565 L 52.025 10.491 L 49.551 10.491 L 49.551 12.197 L 52.293 12.197 Z M 70.077 11.689 C 70.51 12.122 71.035 12.34 71.646 12.34 C 72.274 12.34 72.787 12.127 73.214 11.689 C 73.64 11.264 73.855 10.706 73.855 10.033 C 73.855 9.36 73.64 8.799 73.217 8.376 C 72.784 7.944 72.256 7.726 71.648 7.726 C 71.02 7.726 70.507 7.939 70.082 8.376 C 69.657 8.802 69.441 9.36 69.441 10.033 C 69.441 10.706 69.654 11.266 70.077 11.689 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 68.355 21.827 C 65.991 21.827 64.074 23.621 64.074 26.095 C 64.074 28.547 66.003 30.363 68.355 30.363 C 70.72 30.363 72.636 28.557 72.636 26.095 C 72.636 23.621 70.72 21.827 68.355 21.827 Z M 68.355 28.672 C 67.062 28.672 65.948 27.601 65.948 26.085 C 65.948 24.547 67.064 23.498 68.355 23.498 C 69.649 23.498 70.762 24.547 70.762 26.085 C 70.765 27.611 69.649 28.672 68.355 28.672 Z M 59.015 21.827 C 56.651 21.827 54.735 23.621 54.735 26.095 C 54.735 28.547 56.664 30.363 59.015 30.363 C 61.38 30.363 63.296 28.557 63.296 26.095 C 63.296 23.621 61.377 21.827 59.015 21.827 Z M 59.015 28.672 C 57.722 28.672 56.608 27.601 56.608 26.085 C 56.608 24.547 57.724 23.498 59.015 23.498 C 60.309 23.498 61.422 24.547 61.422 26.085 C 61.422 27.611 60.309 28.672 59.015 28.672 Z M 47.902 23.13 L 47.902 24.937 L 52.238 24.937 C 52.105 25.95 51.77 26.698 51.257 27.211 C 50.621 27.846 49.641 28.537 47.912 28.537 C 45.247 28.537 43.163 26.385 43.163 23.721 C 43.163 21.056 45.247 18.905 47.912 18.905 C 49.35 18.905 50.399 19.473 51.177 20.198 L 52.458 18.917 C 51.377 17.881 49.938 17.088 47.922 17.088 C 44.267 17.088 41.199 20.066 41.199 23.711 C 41.199 27.366 44.264 30.333 47.922 30.333 C 49.896 30.333 51.377 29.688 52.548 28.472 C 53.741 27.279 54.119 25.595 54.119 24.236 C 54.119 23.813 54.087 23.433 54.019 23.11 L 47.899 23.11 C 47.902 23.108 47.902 23.13 47.902 23.13 Z M 93.359 24.536 C 93.002 23.578 91.921 21.817 89.704 21.817 C 87.507 21.817 85.681 23.546 85.681 26.085 C 85.681 28.482 87.487 30.353 89.917 30.353 C 91.868 30.353 93.004 29.16 93.472 28.46 L 92.023 27.489 C 91.543 28.202 90.875 28.67 89.927 28.67 C 88.969 28.67 88.298 28.234 87.853 27.376 L 93.56 25.012 C 93.56 25.014 93.359 24.536 93.359 24.536 Z M 87.54 25.963 C 87.495 24.314 88.821 23.476 89.769 23.476 C 90.517 23.476 91.14 23.843 91.353 24.379 Z M 82.904 30.098 L 84.778 30.098 L 84.778 17.559 L 82.904 17.559 Z M 79.826 22.775 L 79.759 22.775 C 79.336 22.272 78.533 21.817 77.507 21.817 C 75.378 21.817 73.417 23.691 73.417 26.098 C 73.417 28.495 75.368 30.346 77.507 30.346 C 78.52 30.346 79.336 29.888 79.759 29.375 L 79.826 29.375 L 79.826 29.988 C 79.826 31.617 78.956 32.495 77.552 32.495 C 76.404 32.495 75.691 31.67 75.401 30.979 L 73.772 31.659 C 74.24 32.785 75.488 34.179 77.55 34.179 C 79.746 34.179 81.608 32.885 81.608 29.731 L 81.608 22.072 L 79.836 22.072 L 79.836 22.775 C 79.839 22.775 79.826 22.775 79.826 22.775 Z M 77.675 28.672 C 76.381 28.672 75.3 27.591 75.3 26.098 C 75.3 24.591 76.381 23.501 77.675 23.501 C 78.956 23.501 79.949 24.604 79.949 26.098 C 79.962 27.591 78.958 28.672 77.675 28.672 Z M 102.134 17.559 L 97.653 17.559 L 97.653 30.098 L 99.527 30.098 L 99.527 25.35 L 102.136 25.35 C 104.21 25.35 106.25 23.846 106.25 21.459 C 106.25 19.072 104.218 17.559 102.134 17.559 Z M 102.189 23.598 L 99.524 23.598 L 99.524 19.295 L 102.189 19.295 C 103.592 19.295 104.386 20.453 104.386 21.447 C 104.386 22.43 103.582 23.598 102.189 23.598 Z M 113.76 21.804 C 112.399 21.804 110.996 22.407 110.415 23.721 L 112.077 24.411 C 112.434 23.721 113.09 23.486 113.783 23.486 C 114.754 23.486 115.734 24.066 115.757 25.102 L 115.757 25.235 C 115.422 25.044 114.686 24.754 113.805 24.754 C 112.011 24.754 110.193 25.735 110.193 27.574 C 110.193 29.258 111.664 30.338 113.302 30.338 C 114.561 30.338 115.254 29.771 115.687 29.113 L 115.754 29.113 L 115.754 30.083 L 117.561 30.083 L 117.561 25.28 C 117.561 23.043 115.899 21.804 113.76 21.804 Z M 113.525 28.672 C 112.912 28.672 112.054 28.372 112.054 27.601 C 112.054 26.631 113.125 26.263 114.038 26.263 C 114.864 26.263 115.254 26.44 115.744 26.686 C 115.609 27.811 114.659 28.662 113.525 28.672 Z M 124.151 22.072 L 121.999 27.511 L 121.932 27.511 L 119.702 22.072 L 117.686 22.072 L 121.031 29.675 L 119.124 33.901 L 121.076 33.901 L 126.222 22.072 Z M 107.283 30.098 L 109.157 30.098 L 109.157 17.559 L 107.283 17.559 Z\" fill=\"rgb(255,255,255)\"></path><g><defs><linearGradient id=\"idss9697253289_7g1673948338\" x1=\"1\" x2=\"0\" y1=\"0.36348137279256043\" y2=\"0.6365186272074396\"><stop offset=\"0\" stop-color=\"rgb(0,160,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,227,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 10.469 7.558 C 10.178 7.871 10.011 8.349 10.011 8.975 L 10.011 31.159 C 10.011 31.785 10.178 32.263 10.479 32.563 L 10.556 32.63 L 22.986 20.201 L 22.986 19.923 L 10.546 7.491 Z\" fill=\"url(#idss9697253289_7g1673948338)\"></path></g><g><defs><linearGradient id=\"idss9697253289_8g43703969\" x1=\"1\" x2=\"0\" y1=\"0.4974874371859296\" y2=\"0.5025125628140704\"><stop offset=\"0\" stop-color=\"rgb(255,224,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,156,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.121 24.356 L 22.975 20.211 L 22.975 19.92 L 27.121 15.775 L 27.211 15.83 L 32.115 18.617 C 33.519 19.407 33.519 20.713 32.115 21.514 L 27.211 24.301 Z\" fill=\"url(#idss9697253289_8g43703969)\"></path></g><g><defs><linearGradient id=\"idss9697253289_9g1458251070\" x1=\"0.7924668894653782\" x2=\"0.20753311053462176\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,58,68)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(195,17,98)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.211 24.301 L 22.975 20.066 L 10.468 32.573 C 10.926 33.063 11.694 33.118 12.552 32.64 Z\" fill=\"url(#idss9697253289_9g1458251070)\"></path></g><g><defs><linearGradient id=\"idss9697253289_10g-2043038337\" x1=\"0.20206598087546296\" x2=\"0.797934019124537\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(50,160,113)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,240,118)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.211 15.83 L 12.552 7.503 C 11.694 7.013 10.923 7.08 10.468 7.571 L 22.975 20.066 Z\" fill=\"url(#idss9697253289_10g-2043038337)\"></path></g><path d=\"M 27.121 24.211 L 12.562 32.482 C 11.749 32.95 11.024 32.918 10.556 32.492 L 10.478 32.57 L 10.556 32.638 C 11.024 33.06 11.749 33.095 12.562 32.627 L 27.221 24.301 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 32.115 21.369 L 27.108 24.211 L 27.198 24.301 L 32.102 21.514 C 32.805 21.114 33.151 20.588 33.151 20.066 C 33.108 20.546 32.75 21.001 32.115 21.369 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.12\"></path><path d=\"M 12.553 7.648 L 32.115 18.762 C 32.751 19.12 33.108 19.587 33.163 20.065 C 33.163 19.543 32.818 19.017 32.115 18.617 L 12.553 7.503 C 11.149 6.7 10.011 7.371 10.011 8.974 L 10.011 9.119 C 10.011 7.513 11.149 6.855 12.553 7.648 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.25\"></path></g></svg>',svgContentId:9697253289,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/in/app/eat-app-restaurant-bookings/id950873490\",motionChild:true,nodeId:\"GJi5oAIEF\",openInNewTab:false,scopeId:\"ZhQdU20Fr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qaih8v framer-u3qtyo\",\"data-framer-name\":\"Apple app store download\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kz68nx\",\"data-framer-name\":\"download-on-the-app-store 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"40\" viewBox=\"0 0 120 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_33_383)\">\\n<path d=\"M110.135 0.00013H9.53468C9.16798 0.00013 8.80568 0.00013 8.43995 0.00213C8.1338 0.00413 7.83009 0.00994 7.521 0.01483C6.84951 0.0227318 6.17961 0.0818063 5.5171 0.19154C4.85552 0.303663 4.21467 0.515046 3.61622 0.81854C3.0185 1.1246 2.47235 1.5223 1.99757 1.9972C1.5203 2.47077 1.12246 3.01815 0.81935 3.61829C0.5154 4.21724 0.304641 4.85907 0.19435 5.52161C0.0830109 6.18332 0.0230984 6.85265 0.01515 7.52361C0.00587 7.83021 0.00489 8.13783 0 8.44447V31.5587C0.00489 31.8692 0.00587 32.17 0.01515 32.4806C0.0231008 33.1516 0.0830134 33.8209 0.19435 34.4825C0.304336 35.1455 0.515108 35.7877 0.81935 36.3868C1.12233 36.985 1.52022 37.5302 1.99757 38.0011C2.47054 38.4781 3.01705 38.8761 3.61622 39.1798C4.21467 39.4841 4.85545 39.6968 5.5171 39.8106C6.17972 39.9195 6.84956 39.9786 7.521 39.9874C7.83009 39.9942 8.1338 39.9981 8.43995 39.9981C8.80567 40.0001 9.168 40.0001 9.53468 40.0001H110.135C110.494 40.0001 110.859 40.0001 111.219 39.9981C111.523 39.9981 111.836 39.9942 112.141 39.9874C112.811 39.9791 113.479 39.92 114.141 39.8106C114.804 39.696 115.448 39.4834 116.049 39.1798C116.647 38.8759 117.193 38.478 117.666 38.0011C118.142 37.5284 118.541 36.9836 118.848 36.3868C119.15 35.7872 119.358 35.1451 119.467 34.4825C119.578 33.8208 119.64 33.1516 119.652 32.4806C119.656 32.17 119.656 31.8692 119.656 31.5587C119.664 31.1954 119.664 30.8341 119.664 30.4649V9.53626C119.664 9.17005 119.664 8.80677 119.656 8.44447C119.656 8.13783 119.656 7.83021 119.652 7.52357C119.64 6.85255 119.578 6.18337 119.467 5.52157C119.358 4.85941 119.149 4.21763 118.848 3.61825C118.23 2.41533 117.252 1.43616 116.049 0.81845C115.448 0.515697 114.804 0.30437 114.141 0.19145C113.48 0.0812328 112.811 0.0221378 112.141 0.01469C111.836 0.00981 111.523 0.00395 111.219 0.002C110.859 0 110.494 0.00013 110.135 0.00013Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M8.44484 39.125C8.14016 39.125 7.84284 39.1211 7.54055 39.1143C6.91433 39.1061 6.28957 39.0516 5.67141 38.9512C5.095 38.8519 4.53661 38.6673 4.01467 38.4033C3.49751 38.1415 3.02582 37.7983 2.61767 37.3867C2.20361 36.98 1.85888 36.5082 1.59716 35.9902C1.33255 35.4688 1.14942 34.9099 1.05416 34.333C0.951281 33.7131 0.895621 33.0863 0.887656 32.458C0.881316 32.2471 0.873016 31.5449 0.873016 31.5449V8.44434C0.873016 8.44434 0.881856 7.75293 0.887706 7.5498C0.895332 6.92248 0.950669 6.29665 1.05324 5.67773C1.14868 5.09925 1.33194 4.53875 1.5967 4.01563C1.85746 3.49794 2.20027 3.02586 2.61184 2.61768C3.02294 2.20562 3.49614 1.8606 4.01418 1.59521C4.53492 1.33209 5.09225 1.14873 5.6675 1.05127C6.28769 0.949836 6.91462 0.894996 7.54301 0.88721L8.44533 0.875H111.214L112.127 0.8877C112.75 0.895099 113.371 0.94945 113.985 1.05029C114.566 1.14898 115.13 1.33362 115.656 1.59814C116.694 2.13299 117.539 2.97916 118.071 4.01807C118.332 4.53758 118.512 5.09351 118.606 5.66699C118.71 6.29099 118.768 6.92174 118.78 7.5542C118.783 7.8374 118.783 8.1416 118.783 8.44434C118.791 8.81934 118.791 9.17627 118.791 9.53613V30.4648C118.791 30.8281 118.791 31.1826 118.783 31.54C118.783 31.8652 118.783 32.1631 118.779 32.4697C118.768 33.0909 118.71 33.7104 118.608 34.3232C118.515 34.9043 118.333 35.4675 118.068 35.9932C117.805 36.5056 117.462 36.9733 117.053 37.3789C116.644 37.7927 116.172 38.1379 115.653 38.4014C115.128 38.6674 114.566 38.8527 113.985 38.9512C113.367 39.0522 112.742 39.1067 112.116 39.1143C111.823 39.1211 111.517 39.125 111.219 39.125L110.135 39.127L8.44484 39.125Z\" fill=\"black\"/>\\n<path d=\"M24.7689 20.3007C24.7796 19.466 25.0013 18.6477 25.4134 17.9217C25.8254 17.1957 26.4143 16.5858 27.1254 16.1486C26.6737 15.5035 26.0777 14.9725 25.3849 14.598C24.6921 14.2234 23.9215 14.0156 23.1343 13.991C21.455 13.8147 19.8271 14.9958 18.9714 14.9958C18.0991 14.9958 16.7816 14.0085 15.3629 14.0376C14.4452 14.0673 13.5509 14.3341 12.767 14.8122C11.9831 15.2903 11.3364 15.9632 10.89 16.7655C8.95595 20.1139 10.3985 25.035 12.2511 27.7416C13.178 29.0669 14.2613 30.5474 15.6788 30.4949C17.0658 30.4374 17.5839 29.6104 19.2582 29.6104C20.9169 29.6104 21.403 30.4949 22.8492 30.4615C24.3376 30.4374 25.2753 29.1303 26.1697 27.7924C26.8357 26.848 27.3481 25.8043 27.6881 24.6999C26.8234 24.3341 26.0855 23.722 25.5664 22.9397C25.0472 22.1574 24.7699 21.2396 24.7689 20.3007Z\" fill=\"white\"/>\\n<path d=\"M22.0372 12.2109C22.8488 11.2367 23.2486 9.98451 23.1518 8.72028C21.9119 8.8505 20.7667 9.44306 19.9442 10.3799C19.542 10.8376 19.234 11.37 19.0378 11.9468C18.8415 12.5235 18.7609 13.1333 18.8005 13.7413C19.4206 13.7477 20.0341 13.6132 20.5948 13.3482C21.1554 13.0831 21.6486 12.6942 22.0372 12.2109Z\" fill=\"white\"/>\\n<path d=\"M42.3022 27.1396H37.5688L36.4321 30.4961H34.4272L38.9106 18.0781H40.9936L45.477 30.4961H43.438L42.3022 27.1396ZM38.0591 25.5908H41.8111L39.9615 20.1435H39.9097L38.0591 25.5908Z\" fill=\"white\"/>\\n<path d=\"M55.1597 25.9697C55.1597 28.7832 53.6538 30.5908 51.3813 30.5908C50.8057 30.6209 50.2332 30.4883 49.7294 30.2082C49.2256 29.928 48.8109 29.5117 48.5327 29.0068H48.4897V33.4912H46.6313V21.4424H48.4302V22.9482H48.4644C48.7553 22.4458 49.177 22.0316 49.6847 21.7497C50.1923 21.4679 50.7668 21.3289 51.3472 21.3476C53.645 21.3477 55.1597 23.1641 55.1597 25.9697ZM53.2495 25.9697C53.2495 24.1367 52.3022 22.9316 50.8569 22.9316C49.437 22.9316 48.4819 24.1621 48.4819 25.9697C48.4819 27.7939 49.437 29.0156 50.8569 29.0156C52.3022 29.0156 53.2495 27.8193 53.2495 25.9697Z\" fill=\"white\"/>\\n<path d=\"M65.1245 25.9697C65.1245 28.7832 63.6187 30.5908 61.3462 30.5908C60.7705 30.6209 60.198 30.4883 59.6942 30.2082C59.1905 29.928 58.7757 29.5117 58.4976 29.0068H58.4546V33.4912H56.5962V21.4424H58.395V22.9482H58.4292C58.7201 22.4458 59.1418 22.0316 59.6495 21.7497C60.1571 21.4679 60.7317 21.3289 61.312 21.3476C63.6099 21.3476 65.1245 23.164 65.1245 25.9697ZM63.2144 25.9697C63.2144 24.1367 62.2671 22.9316 60.8218 22.9316C59.4018 22.9316 58.4468 24.1621 58.4468 25.9697C58.4468 27.7939 59.4018 29.0156 60.8218 29.0156C62.2671 29.0156 63.2144 27.8193 63.2144 25.9697Z\" fill=\"white\"/>\\n<path d=\"M71.7104 27.0361C71.8481 28.2676 73.0444 29.0761 74.6792 29.0761C76.2456 29.0761 77.3726 28.2675 77.3726 27.1572C77.3726 26.1933 76.6929 25.6162 75.0835 25.2207L73.4741 24.833C71.1939 24.2822 70.1353 23.2158 70.1353 21.4853C70.1353 19.3427 72.0024 17.871 74.6538 17.871C77.2778 17.871 79.0767 19.3427 79.1372 21.4853H77.2612C77.1489 20.246 76.1245 19.498 74.6274 19.498C73.1303 19.498 72.1059 20.2548 72.1059 21.3564C72.1059 22.2343 72.7602 22.7509 74.3608 23.1464L75.729 23.4823C78.2768 24.0849 79.3354 25.1083 79.3354 26.9247C79.3354 29.248 77.4848 30.703 74.5415 30.703C71.7876 30.703 69.9282 29.2821 69.8081 27.036L71.7104 27.0361Z\" fill=\"white\"/>\\n<path d=\"M83.3462 19.2998V21.4424H85.0679V22.9141H83.3462V27.9053C83.3462 28.6807 83.6909 29.042 84.4477 29.042C84.6521 29.0384 84.8562 29.0241 85.0591 28.999V30.4619C84.7188 30.5255 84.3729 30.5543 84.0268 30.5478C82.1938 30.5478 81.479 29.8593 81.479 28.1035V22.9141H80.1626V21.4424H81.479V19.2998H83.3462Z\" fill=\"white\"/>\\n<path d=\"M86.065 25.9697C86.065 23.1211 87.7427 21.3311 90.3589 21.3311C92.9839 21.3311 94.6538 23.1211 94.6538 25.9697C94.6538 28.8262 92.9927 30.6084 90.3589 30.6084C87.7261 30.6084 86.065 28.8262 86.065 25.9697ZM92.7603 25.9697C92.7603 24.0156 91.8648 22.8623 90.3589 22.8623C88.853 22.8623 87.9585 24.0244 87.9585 25.9697C87.9585 27.9316 88.853 29.0762 90.3589 29.0762C91.8648 29.0762 92.7603 27.9316 92.7603 25.9697Z\" fill=\"white\"/>\\n<path d=\"M96.186 21.4424H97.9585V22.9834H98.0015C98.1214 22.5021 98.4034 22.0768 98.8 21.7789C99.1966 21.481 99.6836 21.3287 100.179 21.3476C100.393 21.3469 100.607 21.3702 100.816 21.417V23.1553C100.546 23.0726 100.264 23.0347 99.981 23.043C99.711 23.032 99.4418 23.0796 99.192 23.1825C98.9421 23.2854 98.7175 23.4411 98.5335 23.639C98.3496 23.8369 98.2106 24.0723 98.1262 24.3289C98.0417 24.5856 98.0139 24.8575 98.0444 25.126V30.4961H96.186L96.186 21.4424Z\" fill=\"white\"/>\\n<path d=\"M109.384 27.8369C109.134 29.4805 107.534 30.6084 105.486 30.6084C102.852 30.6084 101.217 28.8437 101.217 26.0127C101.217 23.1729 102.861 21.3311 105.408 21.3311C107.913 21.3311 109.488 23.0518 109.488 25.7969V26.4336H103.093V26.5459C103.064 26.8791 103.105 27.2148 103.216 27.5306C103.326 27.8464 103.502 28.1352 103.732 28.3778C103.963 28.6203 104.242 28.8111 104.552 28.9374C104.861 29.0637 105.195 29.1226 105.529 29.1103C105.968 29.1515 106.409 29.0498 106.785 28.8203C107.162 28.5909 107.455 28.246 107.62 27.8369L109.384 27.8369ZM103.102 25.1348H107.628C107.645 24.8352 107.6 24.5354 107.495 24.2541C107.39 23.9729 107.229 23.7164 107.02 23.5006C106.812 23.2849 106.561 23.1145 106.283 23.0003C106.006 22.8861 105.708 22.8305 105.408 22.8369C105.105 22.8351 104.805 22.8933 104.525 23.008C104.245 23.1227 103.99 23.2918 103.776 23.5054C103.562 23.7191 103.392 23.973 103.276 24.2527C103.16 24.5323 103.101 24.8321 103.102 25.1348Z\" fill=\"white\"/>\\n<path d=\"M37.8262 8.73101C38.2158 8.70305 38.6068 8.76191 38.9709 8.90335C39.335 9.04478 39.6632 9.26526 39.9318 9.54889C40.2004 9.83251 40.4026 10.1722 40.524 10.5435C40.6455 10.9148 40.6829 11.3083 40.6338 11.6959C40.6338 13.6021 39.6035 14.6979 37.8262 14.6979H35.6709V8.73101H37.8262ZM36.5977 13.854H37.7227C38.0011 13.8707 38.2797 13.825 38.5382 13.7204C38.7968 13.6158 39.0287 13.4548 39.2172 13.2493C39.4057 13.0437 39.546 12.7987 39.6279 12.5321C39.7097 12.2655 39.7311 11.9839 39.6904 11.708C39.7282 11.4332 39.7046 11.1534 39.6215 10.8887C39.5384 10.6241 39.3977 10.3811 39.2097 10.1771C39.0216 9.97322 38.7908 9.81341 38.5337 9.70917C38.2766 9.60494 37.9997 9.55885 37.7227 9.57422H36.5977V13.854Z\" fill=\"white\"/>\\n<path d=\"M41.6807 12.4443C41.6524 12.1484 41.6862 11.8499 41.7801 11.5678C41.8739 11.2857 42.0257 11.0264 42.2256 10.8064C42.4256 10.5864 42.6693 10.4107 42.9411 10.2904C43.213 10.1701 43.507 10.108 43.8042 10.108C44.1015 10.108 44.3955 10.1701 44.6673 10.2904C44.9392 10.4107 45.1829 10.5864 45.3828 10.8064C45.5828 11.0264 45.7345 11.2857 45.8284 11.5678C45.9222 11.8499 45.9561 12.1484 45.9278 12.4443C45.9566 12.7406 45.9232 13.0396 45.8296 13.3221C45.736 13.6046 45.5843 13.8644 45.3843 14.0848C45.1843 14.3052 44.9404 14.4814 44.6683 14.6019C44.3962 14.7225 44.1019 14.7847 43.8042 14.7847C43.5066 14.7847 43.2123 14.7225 42.9402 14.6019C42.668 14.4814 42.4241 14.3052 42.2241 14.0848C42.0242 13.8644 41.8725 13.6046 41.7789 13.3221C41.6853 13.0396 41.6519 12.7406 41.6807 12.4443ZM45.0137 12.4443C45.0137 11.4683 44.5752 10.8975 43.8057 10.8975C43.0332 10.8975 42.5987 11.4683 42.5987 12.4444C42.5987 13.4282 43.0333 13.9946 43.8057 13.9946C44.5752 13.9946 45.0137 13.4243 45.0137 12.4443Z\" fill=\"white\"/>\\n<path d=\"M51.5733 14.6978H50.6514L49.7207 11.3813H49.6504L48.7237 14.6978H47.8106L46.5694 10.1948H47.4707L48.2774 13.6308H48.3438L49.2696 10.1948H50.1221L51.0479 13.6308H51.1182L51.9209 10.1948H52.8096L51.5733 14.6978Z\" fill=\"white\"/>\\n<path d=\"M53.8536 10.1948H54.709V10.9102H54.7754C54.8881 10.6532 55.0781 10.4379 55.319 10.2941C55.5598 10.1503 55.8396 10.0852 56.1192 10.1079C56.3383 10.0914 56.5583 10.1245 56.7629 10.2046C56.9675 10.2847 57.1514 10.4098 57.3011 10.5706C57.4508 10.7315 57.5624 10.9239 57.6276 11.1337C57.6928 11.3436 57.7099 11.5654 57.6778 11.7827V14.6977H56.7891V12.0059C56.7891 11.2822 56.4746 10.9224 55.8174 10.9224C55.6687 10.9154 55.5202 10.9408 55.3821 10.9966C55.244 11.0524 55.1197 11.1375 55.0176 11.2458C54.9154 11.3542 54.838 11.4834 54.7904 11.6245C54.7429 11.7657 54.7265 11.9154 54.7422 12.0635V14.6978H53.8535L53.8536 10.1948Z\" fill=\"white\"/>\\n<path d=\"M59.0938 8.43701H59.9825V14.6978H59.0938V8.43701Z\" fill=\"white\"/>\\n<path d=\"M61.2178 12.4443C61.1895 12.1484 61.2234 11.8498 61.3172 11.5677C61.4111 11.2857 61.5629 11.0263 61.7628 10.8063C61.9628 10.5863 62.2065 10.4106 62.4784 10.2903C62.7503 10.17 63.0443 10.1079 63.3416 10.1079C63.6389 10.1079 63.9329 10.17 64.2047 10.2903C64.4766 10.4106 64.7203 10.5863 64.9203 10.8063C65.1203 11.0263 65.272 11.2857 65.3659 11.5677C65.4598 11.8498 65.4936 12.1484 65.4653 12.4443C65.4942 12.7406 65.4607 13.0396 65.3671 13.3221C65.2734 13.6046 65.1217 13.8644 64.9217 14.0848C64.7217 14.3052 64.4778 14.4814 64.2057 14.6019C63.9335 14.7224 63.6392 14.7847 63.3416 14.7847C63.0439 14.7847 62.7496 14.7224 62.4775 14.6019C62.2053 14.4814 61.9614 14.3052 61.7614 14.0848C61.5614 13.8644 61.4097 13.6046 61.3161 13.3221C61.2225 13.0396 61.189 12.7406 61.2178 12.4443ZM64.5508 12.4443C64.5508 11.4683 64.1123 10.8975 63.3428 10.8975C62.5703 10.8975 62.1358 11.4683 62.1358 12.4444C62.1358 13.4282 62.5704 13.9946 63.3428 13.9946C64.1123 13.9946 64.5508 13.4243 64.5508 12.4443Z\" fill=\"white\"/>\\n<path d=\"M66.4009 13.4243C66.4009 12.6138 67.0044 12.1465 68.0757 12.0801L69.2954 12.0098V11.6211C69.2954 11.1455 68.981 10.877 68.3736 10.877C67.8775 10.877 67.5337 11.0591 67.4351 11.3775H66.5747C66.6656 10.604 67.3931 10.1079 68.4146 10.1079C69.5435 10.1079 70.1802 10.6699 70.1802 11.6211V14.6978H69.3247V14.065H69.2544C69.1117 14.292 68.9113 14.477 68.6737 14.6012C68.4361 14.7254 68.1697 14.7844 67.9019 14.772C67.7129 14.7916 67.5218 14.7715 67.341 14.7128C67.1603 14.6541 66.9938 14.5581 66.8524 14.4312C66.711 14.3042 66.5977 14.149 66.52 13.9756C66.4422 13.8022 66.4017 13.6144 66.4009 13.4243ZM69.2954 13.0396V12.6631L68.1958 12.7334C67.5757 12.7749 67.2945 12.9859 67.2945 13.3828C67.2945 13.7881 67.646 14.0239 68.1295 14.0239C68.2711 14.0383 68.4142 14.024 68.5502 13.9819C68.6862 13.9398 68.8123 13.8708 68.9211 13.7789C69.0299 13.6871 69.1191 13.5743 69.1834 13.4473C69.2477 13.3203 69.2858 13.1816 69.2954 13.0396Z\" fill=\"white\"/>\\n<path d=\"M71.3482 12.4444C71.3482 11.0215 72.0796 10.1201 73.2173 10.1201C73.4987 10.1072 73.778 10.1746 74.0226 10.3145C74.2671 10.4544 74.4667 10.661 74.5982 10.9101H74.6646V8.43701H75.5533V14.6978H74.7017V13.9863H74.6314C74.4898 14.2338 74.2832 14.4378 74.0339 14.5763C73.7847 14.7148 73.5023 14.7825 73.2173 14.772C72.0718 14.772 71.3482 13.8706 71.3482 12.4444ZM72.2662 12.4444C72.2662 13.3994 72.7164 13.9741 73.4693 13.9741C74.2183 13.9741 74.6812 13.3911 74.6812 12.4483C74.6812 11.5098 74.2134 10.9185 73.4693 10.9185C72.7212 10.9185 72.2662 11.4971 72.2662 12.4444Z\" fill=\"white\"/>\\n<path d=\"M79.23 12.4443C79.2017 12.1484 79.2356 11.8499 79.3294 11.5678C79.4232 11.2857 79.575 11.0264 79.7749 10.8064C79.9749 10.5864 80.2186 10.4107 80.4904 10.2904C80.7623 10.1701 81.0563 10.108 81.3536 10.108C81.6508 10.108 81.9448 10.1701 82.2167 10.2904C82.4885 10.4107 82.7322 10.5864 82.9322 10.8064C83.1321 11.0264 83.2839 11.2857 83.3777 11.5678C83.4715 11.8499 83.5054 12.1484 83.4771 12.4443C83.5059 12.7406 83.4725 13.0396 83.3789 13.3221C83.2853 13.6046 83.1336 13.8644 82.9336 14.0848C82.7336 14.3052 82.4897 14.4814 82.2176 14.6019C81.9455 14.7225 81.6512 14.7847 81.3536 14.7847C81.0559 14.7847 80.7616 14.7225 80.4895 14.6019C80.2173 14.4814 79.9735 14.3052 79.7735 14.0848C79.5735 13.8644 79.4218 13.6046 79.3282 13.3221C79.2346 13.0396 79.2012 12.7406 79.23 12.4443ZM82.563 12.4443C82.563 11.4683 82.1245 10.8975 81.355 10.8975C80.5826 10.8975 80.148 11.4683 80.148 12.4444C80.148 13.4282 80.5826 13.9946 81.355 13.9946C82.1245 13.9946 82.563 13.4243 82.563 12.4443Z\" fill=\"white\"/>\\n<path d=\"M84.6695 10.1948H85.5249V10.9102H85.5913C85.704 10.6532 85.894 10.4379 86.1349 10.2941C86.3757 10.1503 86.6555 10.0852 86.9351 10.1079C87.1542 10.0914 87.3742 10.1245 87.5788 10.2046C87.7834 10.2847 87.9673 10.4098 88.117 10.5706C88.2667 10.7315 88.3783 10.9239 88.4435 11.1337C88.5087 11.3436 88.5258 11.5654 88.4937 11.7827V14.6977H87.605V12.0059C87.605 11.2822 87.2906 10.9224 86.6333 10.9224C86.4846 10.9154 86.3361 10.9408 86.198 10.9966C86.06 11.0524 85.9356 11.1375 85.8335 11.2458C85.7314 11.3542 85.6539 11.4834 85.6064 11.6245C85.5588 11.7657 85.5424 11.9154 85.5581 12.0635V14.6978H84.6695V10.1948Z\" fill=\"white\"/>\\n<path d=\"M93.5152 9.07373V10.2153H94.4908V10.9639H93.5152V13.2793C93.5152 13.751 93.7095 13.9575 94.1519 13.9575C94.2651 13.9572 94.3783 13.9503 94.4908 13.937V14.6772C94.3312 14.7058 94.1695 14.721 94.0074 14.7226C93.0191 14.7226 92.6255 14.375 92.6255 13.5068V10.9638H91.9107V10.2153H92.6255V9.07373H93.5152Z\" fill=\"white\"/>\\n<path d=\"M95.7046 8.43701H96.5855V10.9185H96.6558C96.7739 10.6591 96.9691 10.4425 97.2148 10.2982C97.4605 10.1539 97.7448 10.0888 98.0288 10.1118C98.2467 10.1 98.4646 10.1364 98.6669 10.2184C98.8692 10.3004 99.0509 10.4261 99.199 10.5864C99.3471 10.7468 99.458 10.9378 99.5238 11.146C99.5896 11.3541 99.6086 11.5742 99.5796 11.7905V14.6978H98.69V12.0098C98.69 11.2905 98.355 10.9263 97.7271 10.9263C97.5744 10.9137 97.4207 10.9347 97.277 10.9878C97.1332 11.0408 97.0027 11.1247 96.8948 11.2334C96.7868 11.3421 96.7038 11.4732 96.6518 11.6173C96.5997 11.7614 96.5798 11.9152 96.5933 12.0679V14.6977H95.7047L95.7046 8.43701Z\" fill=\"white\"/>\\n<path d=\"M104.761 13.4819C104.641 13.8935 104.379 14.2495 104.022 14.4876C103.666 14.7258 103.236 14.8309 102.81 14.7847C102.513 14.7925 102.219 14.7357 101.946 14.6182C101.674 14.5006 101.43 14.3252 101.232 14.1041C101.034 13.8829 100.887 13.6214 100.8 13.3376C100.713 13.0537 100.689 12.7544 100.73 12.4605C100.691 12.1656 100.715 11.8656 100.801 11.581C100.888 11.2963 101.034 11.0335 101.231 10.8105C101.428 10.5874 101.671 10.4092 101.942 10.288C102.214 10.1668 102.509 10.1054 102.806 10.1079C104.059 10.1079 104.815 10.9639 104.815 12.3779V12.688H101.635V12.7378C101.621 12.9031 101.642 13.0694 101.696 13.2261C101.75 13.3829 101.837 13.5266 101.95 13.6481C102.062 13.7695 102.2 13.866 102.352 13.9314C102.504 13.9968 102.669 14.0297 102.835 14.0278C103.047 14.0533 103.262 14.0151 103.453 13.9178C103.644 13.8206 103.802 13.6689 103.906 13.4819L104.761 13.4819ZM101.635 12.0308H103.91C103.921 11.8796 103.9 11.7278 103.849 11.5851C103.798 11.4424 103.718 11.3119 103.614 11.2021C103.509 11.0922 103.383 11.0054 103.243 10.9472C103.103 10.8891 102.953 10.8608 102.801 10.8643C102.648 10.8623 102.495 10.8912 102.353 10.9491C102.21 11.0071 102.081 11.0929 101.972 11.2017C101.864 11.3104 101.778 11.4397 101.72 11.5821C101.662 11.7245 101.633 11.8771 101.635 12.0308Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_33_383\">\\n<rect width=\"119.664\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yii11d\",\"data-framer-name\":\"Top border\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(151, 151, 151)\"},children:\"\\xa9 Eat App. All rights reserved.\"})}),className:\"framer-1ofonbw\",\"data-framer-name\":\"Copyright\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Cv1WE.framer-u3qtyo, .framer-Cv1WE .framer-u3qtyo { display: block; }\",\".framer-Cv1WE.framer-q2jlj4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1152px; }\",\".framer-Cv1WE .framer-18mn1gi { align-content: center; align-items: center; background-color: #e5f4eb; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 167px; height: 64px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-Cv1WE .framer-15kfl3s { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-t9tyhj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Cv1WE .framer-7qyazp { aspect-ratio: 2 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 48px; }\",\".framer-Cv1WE .framer-1w83ygm, .framer-Cv1WE .framer-k6mikn { flex: none; height: 24px; left: 0px; position: absolute; text-decoration: none; top: 0px; width: 48px; }\",\".framer-Cv1WE .framer-cm25iz, .framer-Cv1WE .framer-2e26zd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Cv1WE .framer-13xi7uq-container, .framer-Cv1WE .framer-1y3hg7l-container, .framer-Cv1WE .framer-9tns2p-container, .framer-Cv1WE .framer-1ltwdao-container, .framer-Cv1WE .framer-13h77k-container, .framer-Cv1WE .framer-1rf9dgq-container, .framer-Cv1WE .framer-1l6tvbk-container, .framer-Cv1WE .framer-1yqnbp8-container, .framer-Cv1WE .framer-tctvkg-container, .framer-Cv1WE .framer-g76ur8-container, .framer-Cv1WE .framer-qc727x-container, .framer-Cv1WE .framer-jn80dm-container, .framer-Cv1WE .framer-xjeuon-container, .framer-Cv1WE .framer-u141as-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Cv1WE .framer-1xy29i1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Cv1WE .framer-eeuxfb-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Cv1WE.framer-1oyoars, .framer-Cv1WE.framer-14w0okp { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-Cv1WE.framer-ar9usq { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: fixed; top: 64px; width: 100%; }\",\".framer-Cv1WE .framer-15mdrdb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-61im0x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-3e76gx { align-content: center; align-items: center; background-color: #99d3ad; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-f4xjl9, .framer-Cv1WE .framer-1trh19f, .framer-Cv1WE .framer-mywpkm, .framer-Cv1WE .framer-13v4nkf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Cv1WE .framer-bc9y2e { align-content: center; align-items: center; background-color: #128849; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-1k42dd5 { align-content: center; align-items: center; background-color: #e5f4eb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 93px 100px 93px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-d0d6yv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1180px; }\",\".framer-Cv1WE .framer-1k40jhc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-yhku7g, .framer-Cv1WE .framer-1uwwvd6 { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-1d8jns4, .framer-Cv1WE .framer-hsw9k8, .framer-Cv1WE .framer-j0ar2n, .framer-Cv1WE .framer-120mzsm, .framer-Cv1WE .framer-yp2l3q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-15s89la, .framer-Cv1WE .framer-10nhfr1, .framer-Cv1WE .framer-6tua3m, .framer-Cv1WE .framer-128tctl, .framer-Cv1WE .framer-1k3bfkt, .framer-Cv1WE .framer-1f9brvj, .framer-Cv1WE .framer-193xw02, .framer-Cv1WE .framer-12mzcyh, .framer-Cv1WE .framer-q969qd, .framer-Cv1WE .framer-wki6c2, .framer-Cv1WE .framer-bsovz3, .framer-Cv1WE .framer-1xhe33z, .framer-Cv1WE .framer-1m4hfen, .framer-Cv1WE .framer-3wyzhx, .framer-Cv1WE .framer-jb3lit, .framer-Cv1WE .framer-q80slq, .framer-Cv1WE .framer-zgvna2, .framer-Cv1WE .framer-1jgcyhn, .framer-Cv1WE .framer-1ofonbw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-103n5q-container, .framer-Cv1WE .framer-kaz1ku-container, .framer-Cv1WE .framer-1yycpd1-container, .framer-Cv1WE .framer-ww41nf-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-Cv1WE .framer-hzg349 { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 480px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cv1WE .framer-kb0m7u { flex: none; gap: 17.15268898010254px; height: 419px; overflow: hidden; position: relative; width: 545px; }\",\".framer-Cv1WE .framer-10mml81 { bottom: -104px; flex: none; height: 523px; left: calc(49.90825688073397% - 429px / 2); position: absolute; width: 429px; }\",\".framer-Cv1WE .framer-xmbblm { --border-bottom-width: 1px; --border-color: var(--token-5387a276-b0bf-40cf-ab3b-145888fddccc, #f9f9f9); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 64px; justify-content: center; overflow: hidden; overflow-x: auto; padding: 20px 40px 20px 40px; position: sticky; top: 64px; width: 100%; z-index: 8; }\",\".framer-Cv1WE .framer-ljd2qm, .framer-Cv1WE .framer-v0h2bk, .framer-Cv1WE .framer-17yoiip, .framer-Cv1WE .framer-libdoo, .framer-Cv1WE .framer-1fpv70j, .framer-Cv1WE .framer-109cgw9 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Cv1WE .framer-1qb64ep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 40px 93px 40px 93px; position: relative; scroll-margin-top: 60px; width: 100%; z-index: 1; }\",\".framer-Cv1WE .framer-g5f7m8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Cv1WE .framer-hjucul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Cv1WE .framer-2gw38l-container { flex: none; height: auto; max-width: 400px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-828pho { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-5vep79 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 40px 93px 100px 93px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-1rdwg8f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1180px; }\",\".framer-Cv1WE .framer-50wbvo-container, .framer-Cv1WE .framer-1dtp07k-container, .framer-Cv1WE .framer-tg6ayh-container, .framer-Cv1WE .framer-1qypw5g-container, .framer-Cv1WE .framer-75v1e2-container, .framer-Cv1WE .framer-1cb465v-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); position: relative; width: 48px; }\",\".framer-Cv1WE .framer-14dzuf4, .framer-Cv1WE .framer-1i4f9yw, .framer-Cv1WE .framer-16p9gln, .framer-Cv1WE .framer-17238ot, .framer-Cv1WE .framer-ivacrg, .framer-Cv1WE .framer-1y58tek, .framer-Cv1WE .framer-1a18s6j, .framer-Cv1WE .framer-a7uypw, .framer-Cv1WE .framer-3eh422, .framer-Cv1WE .framer-xd6nin, .framer-Cv1WE .framer-1u47ysb, .framer-Cv1WE .framer-oldzc8 { --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-Cv1WE .framer-barxo1, .framer-Cv1WE .framer-1w667lh, .framer-Cv1WE .framer-15zzbge, .framer-Cv1WE .framer-7g0gmp { display: grid; flex: none; gap: 36px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-1q63kuq, .framer-Cv1WE .framer-w0aj96, .framer-Cv1WE .framer-ft9qtn, .framer-Cv1WE .framer-7j8se3 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-tc57ib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Cv1WE .framer-1c25dxl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-191gy5p { --border-bottom-width: 1px; --border-color: var(--token-76299d5c-272d-47db-8f36-0ca9f01ce373, #dadada); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-y0gbwt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-gztryz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-pvhlyb-container, .framer-Cv1WE .framer-gvyim9-container, .framer-Cv1WE .framer-1x6b57-container { flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-Cv1WE .framer-1ojkwvi, .framer-Cv1WE .framer-13qy2ha { align-content: center; align-items: center; 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-Cv1WE .framer-14gl20y { flex: none; height: 140px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-1xkd8h4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 100px 93px 100px 93px; position: relative; scroll-margin-top: 60px; width: 100%; }\",\".framer-Cv1WE .framer-1psonz1, .framer-Cv1WE .framer-1liao05, .framer-Cv1WE .framer-1e82pe0, .framer-Cv1WE .framer-2u2jk8, .framer-Cv1WE .framer-svaz25 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1180px; }\",\".framer-Cv1WE .framer-8fh0y { display: grid; flex: none; gap: 36px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 100%; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-10d64x8, .framer-Cv1WE .framer-1dgjf9t { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 360px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-7en5at, .framer-Cv1WE .framer-18xk901, .framer-Cv1WE .framer-3jiv1d, .framer-Cv1WE .framer-1cw2hmd, .framer-Cv1WE .framer-efhh48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Cv1WE .framer-1hp10hw, .framer-Cv1WE .framer-bi1cdo { --border-bottom-width: 1px; --border-color: var(--token-0ddd1379-4666-4c6c-8592-e2bd04e036a5, #dadada); --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-b6b6f3a7-ed0e-4cec-b850-07aa6aa60146, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 24px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-154z62d, .framer-Cv1WE .framer-15km7q7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-12h65sh, .framer-Cv1WE .framer-1bdwwho { --framer-paragraph-spacing: 0px; flex: none; height: 100px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-80ahlm, .framer-Cv1WE .framer-1a1x2sy, .framer-Cv1WE .framer-1tw1pun, .framer-Cv1WE .framer-cirixa, .framer-Cv1WE .framer-1bluyom { flex: none; height: 101%; left: 0px; opacity: 0; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: -1; }\",\".framer-Cv1WE .framer-8ttuiq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-4n8330 { display: grid; flex: none; gap: 34px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-rm6pt3, .framer-Cv1WE .framer-d4mmca, .framer-Cv1WE .framer-kv6w13 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 100px 93px 100px 93px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-1nzdxor, .framer-Cv1WE .framer-1awhrgq, .framer-Cv1WE .framer-z9q9tt { --border-bottom-width: 1px; --border-color: var(--token-0ddd1379-4666-4c6c-8592-e2bd04e036a5, #dadada); --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-b6b6f3a7-ed0e-4cec-b850-07aa6aa60146, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 24px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-thdv8o, .framer-Cv1WE .framer-1wd7g4h, .framer-Cv1WE .framer-gmkove { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 64px; overflow: visible; position: relative; width: 64px; }\",\".framer-Cv1WE .framer-v1uv4a-container, .framer-Cv1WE .framer-1pou9h3-container, .framer-Cv1WE .framer-16rzk4y-container, .framer-Cv1WE .framer-1bb1pxe, .framer-Cv1WE .framer-kz68nx { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Cv1WE .framer-158qntf, .framer-Cv1WE .framer-1kkv3oq, .framer-Cv1WE .framer-12fbyq8 { flex: none; height: 100px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-16o9hhx { align-content: center; align-items: center; bottom: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1180px; overflow: visible; padding: 0px 0px 20px 0px; position: sticky; width: 100%; }\",\".framer-Cv1WE .framer-1l60jqz-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-Cv1WE .framer-14ckuas { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 93px 40px 93px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-1kdhse0, .framer-Cv1WE .framer-ysbt4k { flex: none; height: auto; max-width: 1180px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-1wv2b1p { align-content: center; align-items: center; background-color: var(--token-c3d37ea6-6ce1-4011-ad9b-204c4ad1d725, #e5f4eb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 93px 100px 93px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-6nwq3z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 580px; }\",\".framer-Cv1WE .framer-4ny9af { --framer-paragraph-spacing: 12px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-1h81t3l { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-4kc7vc { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 93px 100px 93px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-sczt43 { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 425px; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-1yyefa1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-3ns57b, .framer-Cv1WE .framer-12zkut5, .framer-Cv1WE .framer-1fopw6q, .framer-Cv1WE .framer-asubql { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-14tq7kg { align-content: center; align-items: center; background-color: #e5f4eb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 100px 93px 100px 93px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-xjomfe { flex: none; height: 26px; overflow: hidden; position: absolute; right: -67px; top: 30px; width: 276px; z-index: 1; }\",\".framer-Cv1WE .framer-1djm088, .framer-Cv1WE .framer-a1ohvc { bottom: 0px; flex: none; left: calc(50.00000000000002% - 275px / 2); position: absolute; top: 0px; width: 275px; }\",\".framer-Cv1WE .framer-qhmw96 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Cv1WE .framer-3m20fr { bottom: 56px; flex: none; height: 92px; left: -87px; overflow: hidden; position: absolute; width: 276px; z-index: 0; }\",\".framer-Cv1WE .framer-ogjrml { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 93px 64px 93px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-16ki5hh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1182px; }\",\".framer-Cv1WE .framer-f1g0bv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-1jh5plv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 380px; }\",\".framer-Cv1WE .framer-13sy5xk { aspect-ratio: 2 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 48px; }\",\".framer-Cv1WE .framer-ddxf5 { aspect-ratio: 2 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; gap: 0px; height: 24px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-Cv1WE .framer-15h1g5t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Cv1WE .framer-14koffq, .framer-Cv1WE .framer-ae3uqi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Cv1WE .framer-ao4pkk, .framer-Cv1WE .framer-1hcjdvk { flex: none; gap: 0px; height: 24px; overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Cv1WE .framer-7xq2jh, .framer-Cv1WE .framer-13y1bd3 { bottom: 2px; flex: none; left: 2px; position: absolute; right: 2px; text-decoration: none; top: 2px; }\",\".framer-Cv1WE .framer-l0a8an, .framer-Cv1WE .framer-ln4bry, .framer-Cv1WE .framer-1jhhyen { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Cv1WE .framer-1sk02mu { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-Cv1WE .framer-1lwjyls, .framer-Cv1WE .framer-1f3i7wy { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-Cv1WE .framer-10ywc0m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-113fcsy, .framer-Cv1WE .framer-af2trg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-1rj3e4a, .framer-Cv1WE .framer-3nsgai, .framer-Cv1WE .framer-1lo567j, .framer-Cv1WE .framer-1sghyos { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Cv1WE .framer-nekkqh-container, .framer-Cv1WE .framer-1fr7ue-container, .framer-Cv1WE .framer-cdbvmo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-rsb4p9, .framer-Cv1WE .framer-k9cdnh, .framer-Cv1WE .framer-o9hisp, .framer-Cv1WE .framer-1b85low, .framer-Cv1WE .framer-1tjatwi, .framer-Cv1WE .framer-c7k5a8, .framer-Cv1WE .framer-1s1x41t, .framer-Cv1WE .framer-1w0xpc1, .framer-Cv1WE .framer-166t8g1, .framer-Cv1WE .framer-xnz178, .framer-Cv1WE .framer-1jzq08f, .framer-Cv1WE .framer-3b1rv3, .framer-Cv1WE .framer-1wuyg8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-1vdhukd, .framer-Cv1WE .framer-199n6og, .framer-Cv1WE .framer-38cu5t, .framer-Cv1WE .framer-10oq67c, .framer-Cv1WE .framer-1sfv815, .framer-Cv1WE .framer-mobpkm, .framer-Cv1WE .framer-wc72gu, .framer-Cv1WE .framer-1ld2vab, .framer-Cv1WE .framer-9na9sg, .framer-Cv1WE .framer-1cxbvuh, .framer-Cv1WE .framer-157ib8n, .framer-Cv1WE .framer-9fcf4m, .framer-Cv1WE .framer-1sonf1p, .framer-Cv1WE .framer-bv7k7t, .framer-Cv1WE .framer-1jpxnmg, .framer-Cv1WE .framer-1w04zt, .framer-Cv1WE .framer-1jy9f0t, .framer-Cv1WE .framer-1uhkxkt { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Cv1WE .framer-5mbksu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 24px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-bt9yfa, .framer-Cv1WE .framer-3fc1wr, .framer-Cv1WE .framer-xe3ie, .framer-Cv1WE .framer-1i6uq69, .framer-Cv1WE .framer-n1f1nc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 155px; }\",\".framer-Cv1WE .framer-g833h2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cv1WE .framer-1vj6uol, .framer-Cv1WE .framer-1vmui2n, .framer-Cv1WE .framer-1cc7ksf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Cv1WE .framer-tbyrzi { align-content: flex-start; align-items: flex-start; background-color: #e5f4eb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 329px; }\",\".framer-Cv1WE .framer-1k8ewy3, .framer-Cv1WE .framer-pph828 { flex: none; height: 41px; overflow: hidden; position: relative; text-decoration: none; width: 136px; }\",\".framer-Cv1WE .framer-15q3na1, .framer-Cv1WE .framer-1n1pgfh { flex: none; height: 41px; left: calc(50.00000000000002% - 136px / 2); position: absolute; top: calc(48.78048780487807% - 41px / 2); width: 136px; }\",\".framer-Cv1WE .framer-1kvo469, .framer-Cv1WE .framer-1qaih8v { flex: none; height: 40px; overflow: hidden; position: relative; text-decoration: none; width: 120px; }\",\".framer-Cv1WE .framer-6qlsuy { align-content: flex-start; align-items: flex-start; background-color: #fff3e0; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 329px; }\",\".framer-Cv1WE .framer-1yii11d { background-color: #dadada; flex: none; height: 1px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-Cv1WE[data-border=\"true\"]::after, .framer-Cv1WE [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; }','.framer-Cv1WE[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-Cv1WE [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-Cv1WE[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-Cv1WE [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-Cv1WE[data-hide-scrollbars=\"true\"], .framer-Cv1WE [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 654px) and (max-width: 1151px) { .framer-Cv1WE.framer-q2jlj4, .framer-Cv1WE .framer-18mn1gi { width: 654px; } .framer-Cv1WE.framer-1oyoars { background-color: rgba(255, 255, 255, 0.8); z-index: 0; } .framer-Cv1WE.framer-ar9usq { overflow: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; } .framer-Cv1WE .framer-tctvkg-container { order: 0; } .framer-Cv1WE .framer-g76ur8-container { order: 2; } .framer-Cv1WE .framer-qc727x-container { order: 1; } .framer-Cv1WE .framer-jn80dm-container { order: 3; } .framer-Cv1WE .framer-xjeuon-container { order: 4; } .framer-Cv1WE .framer-1k42dd5 { padding: 100px 40px 100px 40px; } .framer-Cv1WE .framer-d0d6yv, .framer-Cv1WE .framer-sczt43, .framer-Cv1WE .framer-1jh5plv { width: 100%; } .framer-Cv1WE .framer-xmbblm { justify-content: flex-start; } .framer-Cv1WE .framer-1qb64ep, .framer-Cv1WE .framer-5vep79 { padding: 40px; } .framer-Cv1WE .framer-barxo1, .framer-Cv1WE .framer-8fh0y, .framer-Cv1WE .framer-4n8330, .framer-Cv1WE .framer-1w667lh, .framer-Cv1WE .framer-15zzbge, .framer-Cv1WE .framer-7g0gmp { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-Cv1WE .framer-1xkd8h4, .framer-Cv1WE .framer-8ttuiq, .framer-Cv1WE .framer-rm6pt3, .framer-Cv1WE .framer-d4mmca, .framer-Cv1WE .framer-kv6w13, .framer-Cv1WE .framer-ogjrml { padding: 64px 40px 64px 40px; } .framer-Cv1WE .framer-14ckuas { padding: 40px 40px 40px 93px; } .framer-Cv1WE .framer-1wv2b1p, .framer-Cv1WE .framer-14tq7kg { padding: 64px 93px 64px 93px; } .framer-Cv1WE .framer-4kc7vc { flex-direction: column; padding: 64px 40px 64px 40px; } .framer-Cv1WE .framer-1yyefa1, .framer-Cv1WE .framer-10ywc0m { flex: none; width: 100%; } .framer-Cv1WE .framer-3m20fr { bottom: -14px; left: -97px; } .framer-Cv1WE .framer-f1g0bv, .framer-Cv1WE .framer-1vj6uol { flex-direction: column; }}\",\"@media (max-width: 653px) { .framer-Cv1WE.framer-q2jlj4, .framer-Cv1WE .framer-18mn1gi { width: 390px; } .framer-Cv1WE.framer-1oyoars { background-color: rgba(255, 255, 255, 0.8); } .framer-Cv1WE.framer-ar9usq { overflow: auto; will-change: var(--framer-will-change-effect-override, transform); } .framer-Cv1WE .framer-tctvkg-container { order: 0; } .framer-Cv1WE .framer-g76ur8-container { order: 2; } .framer-Cv1WE .framer-qc727x-container { order: 1; } .framer-Cv1WE .framer-jn80dm-container { order: 3; } .framer-Cv1WE .framer-xjeuon-container { order: 4; } .framer-Cv1WE .framer-1k42dd5 { padding: 100px 20px 60px 20px; } .framer-Cv1WE .framer-1k40jhc { align-content: center; align-items: center; } .framer-Cv1WE .framer-xmbblm { justify-content: flex-start; } .framer-Cv1WE .framer-1qb64ep, .framer-Cv1WE .framer-5vep79, .framer-Cv1WE .framer-14ckuas { padding: 40px 20px 40px 20px; } .framer-Cv1WE .framer-2gw38l-container { max-width: unset; } .framer-Cv1WE .framer-50wbvo-container, .framer-Cv1WE .framer-1dtp07k-container, .framer-Cv1WE .framer-tg6ayh-container, .framer-Cv1WE .framer-1qypw5g-container, .framer-Cv1WE .framer-75v1e2-container, .framer-Cv1WE .framer-1cb465v-container { height: var(--framer-aspect-ratio-supported, 39px); width: 36px; } .framer-Cv1WE .framer-14dzuf4, .framer-Cv1WE .framer-16p9gln, .framer-Cv1WE .framer-ivacrg, .framer-Cv1WE .framer-1a18s6j, .framer-Cv1WE .framer-3eh422, .framer-Cv1WE .framer-1u47ysb { --framer-paragraph-spacing: 12px; } .framer-Cv1WE .framer-barxo1, .framer-Cv1WE .framer-8fh0y, .framer-Cv1WE .framer-4n8330, .framer-Cv1WE .framer-1w667lh, .framer-Cv1WE .framer-15zzbge, .framer-Cv1WE .framer-7g0gmp { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-Cv1WE .framer-gztryz { align-content: center; align-items: center; flex-direction: row; } .framer-Cv1WE .framer-10nhfr1 { flex: 1 0 0px; width: 1px; } .framer-Cv1WE .framer-1xkd8h4 { padding: 40px 20px 20px 20px; scroll-margin-top: unset; } .framer-Cv1WE .framer-8ttuiq { padding: 40px 20px 20px 20px; } .framer-Cv1WE .framer-rm6pt3, .framer-Cv1WE .framer-d4mmca, .framer-Cv1WE .framer-kv6w13, .framer-Cv1WE .framer-1wv2b1p, .framer-Cv1WE .framer-ogjrml { padding: 64px 20px 64px 20px; } .framer-Cv1WE .framer-16o9hhx { padding: 0px; } .framer-Cv1WE .framer-4kc7vc { flex-direction: column; padding: 64px 20px 64px 20px; } .framer-Cv1WE .framer-sczt43, .framer-Cv1WE .framer-1jh5plv { width: 100%; } .framer-Cv1WE .framer-1yyefa1, .framer-Cv1WE .framer-113fcsy, .framer-Cv1WE .framer-af2trg { flex: none; width: 100%; } .framer-Cv1WE .framer-14tq7kg { padding: 100px 20px 100px 20px; } .framer-Cv1WE .framer-2e26zd, .framer-Cv1WE .framer-f1g0bv, .framer-Cv1WE .framer-1vj6uol { flex-direction: column; } .framer-Cv1WE .framer-3m20fr { bottom: -26px; left: -89px; } .framer-Cv1WE .framer-16ki5hh { gap: 20px; } .framer-Cv1WE .framer-ao4pkk, .framer-Cv1WE .framer-1hcjdvk, .framer-Cv1WE .framer-l0a8an, .framer-Cv1WE .framer-ln4bry, .framer-Cv1WE .framer-1jhhyen { will-change: unset; } .framer-Cv1WE .framer-10ywc0m { flex: none; flex-direction: column; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21062\n * @framerIntrinsicWidth 1152\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qoZrxZ_J0\":{\"layout\":[\"fixed\",\"auto\"]},\"Rj5d_naz1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"kncpBUgDH\":{\"pattern\":\":kncpBUgDH\",\"name\":\"hero\"},\"ekmORP9ad\":{\"pattern\":\":ekmORP9ad\",\"name\":\"search\"},\"xrO8z0zsJ\":{\"pattern\":\":xrO8z0zsJ\",\"name\":\"pos\"},\"CMsuab87E\":{\"pattern\":\":CMsuab87E\",\"name\":\"phone\"},\"lSUSD6BT7\":{\"pattern\":\":lSUSD6BT7\",\"name\":\"payment\"},\"Z7lE0p5R6\":{\"pattern\":\":Z7lE0p5R6\",\"name\":\"booking\"},\"Lms0iVGaD\":{\"pattern\":\":Lms0iVGaD\",\"name\":\"chit\"},\"joLWgpnkz\":{\"pattern\":\":joLWgpnkz\",\"name\":\"pms\"}}\n * @framerResponsiveScreen\n */const FramerZhQdU20Fr=withCSS(Component,css,\"framer-Cv1WE\");export default FramerZhQdU20Fr;FramerZhQdU20Fr.displayName=\"Integrations\";FramerZhQdU20Fr.defaultProps={height:21062,width:1152};addFonts(FramerZhQdU20Fr,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/yDtI2UI8XcEg1W2je9XPN3Noo.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/Mput0MSwESKlJ6TMz9MPDXhgrk.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/ia3uin3hQWqDrVloC1zEtYHWw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/fuyXZpVvOjq8NesCOfgirHCWyg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...NavbarButtonFonts,...NavbarFilledButtonFonts,...BurgerMenuFonts,...ButtonLargeFonts,...InputFonts,...MaterialFonts,...LogoFonts,...ScrollToTopFonts,...FramerSearchFonts,...Link1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZhQdU20Fr\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"kncpBUgDH\\\":{\\\"pattern\\\":\\\":kncpBUgDH\\\",\\\"name\\\":\\\"hero\\\"},\\\"ekmORP9ad\\\":{\\\"pattern\\\":\\\":ekmORP9ad\\\",\\\"name\\\":\\\"search\\\"},\\\"xrO8z0zsJ\\\":{\\\"pattern\\\":\\\":xrO8z0zsJ\\\",\\\"name\\\":\\\"pos\\\"},\\\"CMsuab87E\\\":{\\\"pattern\\\":\\\":CMsuab87E\\\",\\\"name\\\":\\\"phone\\\"},\\\"lSUSD6BT7\\\":{\\\"pattern\\\":\\\":lSUSD6BT7\\\",\\\"name\\\":\\\"payment\\\"},\\\"Z7lE0p5R6\\\":{\\\"pattern\\\":\\\":Z7lE0p5R6\\\",\\\"name\\\":\\\"booking\\\"},\\\"Lms0iVGaD\\\":{\\\"pattern\\\":\\\":Lms0iVGaD\\\",\\\"name\\\":\\\"chit\\\"},\\\"joLWgpnkz\\\":{\\\"pattern\\\":\\\":joLWgpnkz\\\",\\\"name\\\":\\\"pms\\\"}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"21062\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qoZrxZ_J0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rj5d_naz1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1152\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "MaterialFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "cx", "serializationHash", "addPropertyOverrides", "Icon", "css", "FramerFYhyiqvlK", "withCSS", "FYhyiqvlK_default", "addFonts", "MaterialFonts", "useStore", "createStore", "withClass", "Component", "props", "p", "useStore", "createStore", "withClass", "Component", "props", "p", "NC_SEARCH_INPUT", "NC_SEARCHABLE_ITEM", "NC_ITEM", "NC_FILTER_INPUT", "NC_FILTER_ITEM", "SearchStrictness", "FramerSearch", "props", "itemDisplay", "pe", "searchText", "setSearchText", "ye", "searchFilters", "setSearchFilters", "ue", "searchQuery", "term", "n", "found", "i", "e", "search", "window", "arg", "elem", "maybeSearchInput", "searchInput", "filterText", "filters", "itmIndex", "p", "useStore", "createStore", "withClass", "Component", "props", "p", "useStore", "createStore", "withClass", "Component", "props", "p", "useStore", "createStore", "withClass", "Component", "props", "p", "useStore", "createStore", "withClass", "Component", "props", "p", "useStore", "createStore", "withClass", "Component", "props", "p", "useStore", "createStore", "withClass", "Component", "props", "p", "useStore", "createStore", "withClass", "Component", "props", "p", "CheckAndHide", "posDiv", "ncItems", "allHidden", "ncItem", "withCheckAndHide", "C", "re", "DataObserverContext", "NavbarButtonFonts", "getFonts", "xuSZEY7yY_default", "NavbarFilledButtonFonts", "pXzv0MyWd_default", "BurgerMenuFonts", "IXulyNxE6_default", "MotionDivWithStickyNavbar18mn1gi", "withCodeBoundaryForOverrides", "motion", "withStickyNavbar", "ButtonLargeFonts", "EbjdIbRqO_default", "InputFonts", "Input_default", "MotionAWithClasshjucul", "withClass", "MaterialFonts", "Icon", "LogoFonts", "Logo", "RichTextWithClass110nhfr1", "RichText", "MotionDivWithClass21q63kuq", "MotionDivWithClass35vep79", "RichTextWithClass1154z62d", "MotionDivWithClass210d64x8", "MotionDivWithClass41xkd8h4", "RichTextWithClass115km7q7", "MotionDivWithClass2w0aj96", "MotionDivWithClass58ttuiq", "RichTextWithClass16tua3m", "MotionDivWithClass2ft9qtn", "MotionDivWithClass6rm6pt3", "RichTextWithClass1128tctl", "MotionDivWithClass21dgjf9t", "MotionDivWithClass7d4mmca", "RichTextWithClass11k3bfkt", "MotionDivWithClass27j8se3", "MotionDivWithClass8kv6w13", "ScrollToTopFonts", "FYhyiqvlK_default", "MotionDivWithFX", "withFX", "MotionDivWithClass914ckuas", "FramerSearchFonts", "FramerSearch", "Link1Fonts", "CrAbj2H4F_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "QueryData", "query", "pageSize", "data", "useQueryData", "animation3", "animation4", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "tUpJy8zvIkU2Tokiep", "fDNYos32CkU2Tokiep", "Ct7b816B0kU2Tokiep", "Gt9lCSqt7kU2Tokiep", "idkU2Tokiep", "tUpJy8zvII4fcUlITL", "fDNYos32CI4fcUlITL", "Ct7b816B0I4fcUlITL", "AUz73pejrI4fcUlITL", "idI4fcUlITL", "tUpJy8zvIp2QlGBEgq", "fDNYos32Cp2QlGBEgq", "Ct7b816B0p2QlGBEgq", "AUz73pejrp2QlGBEgq", "idp2QlGBEgq", "FeCjtkLpONjkbWcO7o", "fDNYos32CNjkbWcO7o", "Ct7b816B0NjkbWcO7o", "AUz73pejrNjkbWcO7o", "tUpJy8zvINjkbWcO7o", "idNjkbWcO7o", "tUpJy8zvIlP1LRvbZH", "fDNYos32ClP1LRvbZH", "Ct7b816B0lP1LRvbZH", "AUz73pejrlP1LRvbZH", "idlP1LRvbZH", "tUpJy8zvIUzZ7dtAW_", "fDNYos32CUzZ7dtAW_", "Ct7b816B0UzZ7dtAW_", "AUz73pejrUzZ7dtAW_", "idUzZ7dtAW_", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "Link", "SVG", "ComponentViewportProvider", "Container", "l", "AnimatePresence", "Ga", "x", "PropertyOverrides2", "Image2", "ChildrenCanSuspend", "tbXop2dFR_default", "collection", "paginationInfo", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "overlay1", "css", "FramerZhQdU20Fr", "withCSS", "ZhQdU20Fr_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
