{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/KUPkpmPOlG6jggvVel4Q/OuemIcjRCpjB0MCVyiIl/jCfkrRPln.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Navigation from\"#framer/local/canvasComponent/H47QbADxA/H47QbADxA.js\";import CR from\"#framer/local/canvasComponent/iWURWiOUP/iWURWiOUP.js\";import Footuh from\"#framer/local/canvasComponent/VPf6zFJb7/VPf6zFJb7.js\";import metadataProvider from\"#framer/local/webPageMetadata/jCfkrRPln/jCfkrRPln.js\";const NavigationFonts=getFonts(Navigation);const YouTubeFonts=getFonts(YouTube);const FootuhFonts=getFonts(Footuh);const CRFonts=getFonts(CR);const breakpoints={h7k1USzHI:\"(min-width: 1728px)\",OIOln2wqw:\"(max-width: 805px)\",UhGpRaA2W:\"(min-width: 806px) and (max-width: 1727px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-g2LXf\";const variantClassNames={h7k1USzHI:\"framer-v-j32o3v\",OIOln2wqw:\"framer-v-3vhoic\",UhGpRaA2W:\"framer-v-1653n5p\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"h7k1USzHI\",Phone:\"OIOln2wqw\",Tablet:\"UhGpRaA2W\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"h7k1USzHI\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-g2LXf`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-g2LXf`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"UhGpRaA2W\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"OIOln2wqw\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"UhGpRaA2W\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"OIOln2wqw\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"UhGpRaA2W\",\"OIOln2wqw\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"h7k1USzHI\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-j32o3v\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wal8bz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{variant:\"yVO6zMTTR\"},UhGpRaA2W:{variant:\"eO5_ZZyvT\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"FO53F221b\",layoutId:\"FO53F221b\",style:{width:\"100%\"},variant:\"ua3oLOBzZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4a1rak\",\"data-framer-name\":\"1- Hero\",name:\"1- Hero\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(64),sizes:\"calc(100vw + 417px)\",src:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png\",srcSet:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(64),sizes:\"100vw\",src:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png\",srcSet:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png 4096w\"},className:\"framer-1ixf7n9 hidden-1653n5p\",\"data-framer-name\":\"Shabazz cover 1\",name:\"Shabazz cover 1\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(497),sizes:\"calc(100vw + 417px)\",src:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png\",srcSet:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png\",srcSet:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png 4096w\"},className:\"framer-15zae5b hidden-j32o3v hidden-1653n5p\",\"data-framer-name\":\"Shabazz cover 1\",name:\"Shabazz cover 1\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(63),sizes:\"max(100vw, 100px)\",src:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png\",srcSet:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png\",srcSet:\"https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qUvBOZHO33xSYMejKcNIRJOIxKc.png 4096w\"},className:\"framer-xzt1pz hidden-j32o3v hidden-3vhoic\",\"data-framer-name\":\"Shabazz cover 1\",name:\"Shabazz cover 1\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tgg9jv\",\"data-framer-name\":\"2- brief\",name:\"2- brief\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Shabazz Seafood wasn't just Savannah's favorite family-run fish joint; it was a portal to coastal bliss, each dish radiating warmth and a hint of sea salt. But the online ordering experience left much to be desired. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The online experience lacked the charm and ease of navigating the actual restaurant \u2013 where smiles and rapport guided you to your seafood bliss. So, my team set out to bring Shabazz's vibrant atmosphere to the users at home or on the go!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Shabazz Seafood wasn't just Savannah's favorite family-run fish joint; it was a portal to coastal bliss, each dish radiating warmth and a hint of sea salt. But the online ordering experience left much to be desired. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The online experience lacked the charm and ease of navigating the actual restaurant \u2013 where smiles and rapport guided you to your seafood bliss. So, my team set out to bring Shabazz's vibrant atmosphere to the users at home or on the go!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Shabazz Seafood wasn't just Savannah's favorite family-run fish joint; it was a portal to coastal bliss, each dish radiating warmth and a hint of sea salt. But the online ordering experience left much to be desired. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The online experience lacked the charm and ease of navigating the actual restaurant \u2013 where smiles and rapport guided you to your seafood bliss. So, my team set out to bring Shabazz's vibrant atmosphere to the users at home or on the go!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-18cq1f2\",\"data-framer-name\":\"Shabazz Seafood wasn't just Savannah's favorite family-run fish joint; it was a portal to coastal bliss, each dish radiating warmth and a hint of sea salt. But the online ordering experience left much to be desired. The online experience lacked the charm and ease of navigating the actual restaurant \u2013 where smiles and rapport guided you to your seafood bliss. So, my team set out to bring Shabazz's vibrant atmosphere to the users at home or on the go!\",fonts:[\"GF;Barlow-regular\"],name:\"Shabazz Seafood wasn't just Savannah's favorite family-run fish joint; it was a portal to coastal bliss, each dish radiating warmth and a hint of sea salt. But the online ordering experience left much to be desired. The online experience lacked the charm and ease of navigating the actual restaurant \u2013 where smiles and rapport guided you to your seafood bliss. So, my team set out to bring Shabazz's vibrant atmosphere to the users at home or on the go!\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Developed the information architecture and UI design for the menu and prototyped the overall experience for a local restaurant's e-commerce services, packaged as a conceptual branding update. Utilized Figma for prototyping and interface design along with Adobe Illustrator and Procreate for graphic design and illustration. Conducted user testing and competitor analysis to ensure a smooth online ordering experience.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Developed the information architecture and UI design for the menu and prototyped the overall experience for a local restaurant's e-commerce services, packaged as a conceptual branding update. Utilized Figma for prototyping and interface design along with Adobe Illustrator and Procreate for graphic design and illustration. Conducted user testing and competitor analysis to ensure a smooth online ordering experience.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Developed the information architecture and UI design for the menu and prototyped the overall experience for a local restaurant's e-commerce services, packaged as a conceptual branding update. Utilized Figma for prototyping and interface design along with Adobe Illustrator and Procreate for graphic design and illustration. Conducted user testing and competitor analysis to ensure a smooth online ordering experience.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1jpl82a\",\"data-framer-name\":\"Developed the information architecture and UI design for the menu and prototyped the overall experience for a local restaurant's e-commerce services, packaged as a conceptual branding update. Utilized Figma for prototyping and interface design along with Adobe Illustrator and Procreate for graphic design and illustration. Conducted user testing and competitor analysis to ensure a smooth online ordering experience.\",fonts:[\"GF;Barlow-regular\"],name:\"Developed the information architecture and UI design for the menu and prototyped the overall experience for a local restaurant's e-commerce services, packaged as a conceptual branding update. Utilized Figma for prototyping and interface design along with Adobe Illustrator and Procreate for graphic design and illustration. Conducted user testing and competitor analysis to ensure a smooth online ordering experience.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Project Brief\"})})},UhGpRaA2W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Project Brief\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Project Brief\"})})}),className:\"framer-rg4wvb\",\"data-framer-name\":\"Project Brief\",fonts:[\"GF;Barlow-700\"],name:\"Project Brief\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"My Role:\"})})},UhGpRaA2W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"My Role:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"My Role:\"})})}),className:\"framer-fb5lqo\",\"data-framer-name\":\"My Role:\",fonts:[\"GF;Barlow-700\"],name:\"My Role:\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTMwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Project duration: 10 weeks\"})}),fonts:[\"GF;Barlow-300\"]},UhGpRaA2W:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93IExpZ2h0LTMwMA==\",\"--framer-font-family\":'\"Barlow Light\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Project duration: 10 weeks\"})})}),className:\"framer-1b6x3ca\",\"data-framer-name\":\"Project duration: 10 weeks\",fonts:[\"GF;Barlow Light-300\"],name:\"Project duration: 10 weeks\",verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lvk1gk hidden-3vhoic\",\"data-framer-name\":\"3-old_1\",name:\"3-old_1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(42, 100, 77)\"},children:\"The Current Homepage\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The homepage needs to captivate visitors and establish your restaurant as a top-tier brand. Unfortunately, the current design presents some readability and visual appeal issues: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Food reviews:  \"}),\"While including user testimonies boosts credibility,  formatting inconsistencies like misaligned text and suboptimal letter spacing hinder readability and detract from the user experience. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Footer: \"}),\"An overly spacious and fixed footer consumes valuable screen real estate and hinders the flow of content. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Menu Item Collage: \"}),\"Inconsistent image sizes and repetitive watermarks create a cluttered and unprofessional impression.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(42, 100, 77)\"},children:\"The Current Homepage\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The homepage needs to captivate visitors and establish your restaurant as a top-tier brand. Unfortunately, the current design presents some readability and visual appeal issues: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Food reviews:  \"}),\"While including user testimonies boosts credibility,  formatting inconsistencies like misaligned text and suboptimal letter spacing hinder readability and detract from the user experience. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Footer: \"}),\"An overly spacious and fixed footer consumes valuable screen real estate and hinders the flow of content. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Menu Item Collage: \"}),\"Inconsistent image sizes and repetitive watermarks create a cluttered and unprofessional impression.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-xs0ibu\",\"data-framer-name\":\"The Current Homepage The homepage needs to captivate visitors and establish your restaurant as a top-tier brand. Unfortunately, the current design presents some readability and visual appeal issues: Food reviews: While including user testimonies boosts credibility, formatting inconsistencies like misaligned text and suboptimal letter spacing hinder readability and detract from the user experience. Footer: An overly spacious and fixed footer consumes valuable screen real estate and hinders the flow of content. Menu Item Collage: Inconsistent image sizes and repetitive watermarks create a cluttered and unprofessional impression.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"The Current Homepage The homepage needs to captivate visitors and establish your restaurant as a top-tier brand. Unfortunately, the current design presents some readability and visual appeal issues: Food reviews: While including user testimonies boosts credibility, formatting inconsistencies like misaligned text and suboptimal letter spacing hinder readability and detract from the user experience. Footer: An overly spacious and fixed footer consumes valuable screen real estate and hinders the flow of content. Menu Item Collage: Inconsistent image sizes and repetitive watermarks create a cluttered and unprofessional impression.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Out with the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(42, 100, 77)\"},children:\"Old...\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"147px\",\"--framer-line-height\":\"150%\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"147px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Out with the \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"147px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgba(42, 100, 77, 1)\"},children:\"Old...\"})]})}),className:\"framer-1fvqjk9\",\"data-framer-name\":\"Out with the Old...\",fonts:[\"GF;Barlow-700\"],name:\"Out with the Old...\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-73pcxx\",\"data-framer-name\":\"MACMOCK\",name:\"MACMOCK\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1697),positionX:\"center\",positionY:\"center\",sizes:\"620px\",src:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png\",srcSet:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=512 512w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png 3168w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3158),positionX:\"center\",positionY:\"center\",sizes:\"1056px\",src:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png\",srcSet:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=512 512w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png 3168w\"},className:\"framer-17d5ef6\",\"data-framer-name\":\"CHROME_SHBZ page 1\",name:\"CHROME_SHBZ page 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-424k1b\",\"data-framer-name\":\"Frame 1707480509\",name:\"Frame 1707480509\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ca2nhx hidden-1653n5p\",\"data-framer-name\":\"Rectangle 540\",name:\"Rectangle 540\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:662,intrinsicWidth:1053,loading:getLoadingLazyAtYPosition(1746.238663484487),positionX:\"center\",positionY:\"center\",sizes:\"619px\",src:\"https://framerusercontent.com/images/sgHGyZ89KGkzPXqgfWdS54EO30.svg\",srcSet:\"https://framerusercontent.com/images/sgHGyZ89KGkzPXqgfWdS54EO30.svg?scale-down-to=512 512w,https://framerusercontent.com/images/sgHGyZ89KGkzPXqgfWdS54EO30.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sgHGyZ89KGkzPXqgfWdS54EO30.svg 1053w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:662,intrinsicWidth:1053,loading:getLoadingLazyAtYPosition(3240),positionX:\"center\",positionY:\"center\",sizes:\"1053px\",src:\"https://framerusercontent.com/images/sgHGyZ89KGkzPXqgfWdS54EO30.svg\",srcSet:\"https://framerusercontent.com/images/sgHGyZ89KGkzPXqgfWdS54EO30.svg?scale-down-to=512 512w,https://framerusercontent.com/images/sgHGyZ89KGkzPXqgfWdS54EO30.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sgHGyZ89KGkzPXqgfWdS54EO30.svg 1053w\"},className:\"framer-1xwd9pw\",\"data-framer-name\":\"Screen Recording 2024-06-10 at 10.03.10\u202FAM 1\",name:\"Screen Recording 2024-06-10 at 10.03.10\u202FAM 1\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e6c0k6-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"nCW0wPhyn\",isMixedBorderRadius:false,isRed:true,layoutId:\"nCW0wPhyn\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/JlsWvwInjaA?si=FlcoRGKLluVtWOuz\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1674),positionX:\"center\",positionY:\"center\",sizes:\"806px\",src:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png\",srcSet:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png 2744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3112),positionX:\"center\",positionY:\"center\",sizes:\"1372px\",src:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png\",srcSet:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png 2744w\"},className:\"framer-17zqqo4\",\"data-framer-name\":\"MacMOCK\",name:\"MacMOCK\"})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mc3pdv hidden-3vhoic\",\"data-framer-name\":\"4-0ld_2\",name:\"4-0ld_2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(42, 100, 77)\"},children:\"The Current Menu\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Current State: The website's Menu Page features only a menu image, which is a promising approach for showcasing the restaurant's offerings. However, the image suffers from: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Low Quality: The JPEG format presents a blurry and pixelated appearance, hindering readability. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Accessibility Concerns: Even for those with normal vision, zooming is necessary to decipher details, potentially creating an awkward user experience.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Additionally, we felt this menu left a little too much to the imagination, results from customer interviews and user surveys revealed that users who were Shabazz customers, or interested in ordering food from them wished for a more descriptive menu, ideally with product images.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(42, 100, 77)\"},children:\"The Current Menu\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Current State: The website's Menu Page features only a menu image, which is a promising approach for showcasing the restaurant's offerings. However, the image suffers from: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Low Quality: The JPEG format presents a blurry and pixelated appearance, hindering readability. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Accessibility Concerns: Even for those with normal vision, zooming is necessary to decipher details, potentially creating an awkward user experience.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Additionally, we felt this menu left a little too much to the imagination, results from customer interviews and user surveys revealed that users who were Shabazz customers, or interested in ordering food from them wished for a more descriptive menu, ideally with product images.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1y78vrg\",\"data-framer-name\":\"The Current Menu Current State: The website's Menu Page features only a menu image, which is a promising approach for showcasing the restaurant's offerings. However, the image suffers from: Low Quality: The JPEG format presents a blurry and pixelated appearance, hindering readability. Accessibility Concerns: Even for those with normal vision, zooming is necessary to decipher details, potentially creating an awkward user experience. Additionally, we felt this menu left a little too much to the imagination, results from customer interviews and user surveys revealed that users who were Shabazz customers, or interested in ordering food from them wished for a more descriptive menu, ideally with product images.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"The Current Menu Current State: The website's Menu Page features only a menu image, which is a promising approach for showcasing the restaurant's offerings. However, the image suffers from: Low Quality: The JPEG format presents a blurry and pixelated appearance, hindering readability. Accessibility Concerns: Even for those with normal vision, zooming is necessary to decipher details, potentially creating an awkward user experience. Additionally, we felt this menu left a little too much to the imagination, results from customer interviews and user surveys revealed that users who were Shabazz customers, or interested in ordering food from them wished for a more descriptive menu, ideally with product images.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uwk39v\",\"data-framer-name\":\"old Menu\",name:\"old Menu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fykm9c\",\"data-framer-name\":\"MACMOCK\",name:\"MACMOCK\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2873),positionX:\"center\",positionY:\"center\",sizes:\"626px\",src:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png\",srcSet:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=512 512w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png 3168w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5041),positionX:\"center\",positionY:\"center\",sizes:\"1056px\",src:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png\",srcSet:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=512 512w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png 3168w\"},className:\"framer-19igrzb\",\"data-framer-name\":\"CHROME_SHBZ page 1\",name:\"CHROME_SHBZ page 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2844),positionX:\"center\",positionY:\"center\",sizes:\"806px\",src:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png\",srcSet:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png 2744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4995),positionX:\"center\",positionY:\"center\",sizes:\"1372px\",src:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png\",srcSet:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png 2744w\"},className:\"framer-62esdu\",\"data-framer-name\":\"MacMOCK\",name:\"MacMOCK\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yrf92g\",\"data-framer-name\":\"Frame 1707480509\",name:\"Frame 1707480509\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-guh3a9 hidden-1653n5p\",\"data-framer-name\":\"Rectangle 540\",name:\"Rectangle 540\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:617,intrinsicWidth:1053,loading:getLoadingLazyAtYPosition(2793.1858990171754),positionX:\"center\",positionY:\"center\",sizes:\"1053px\",src:\"https://framerusercontent.com/images/zZwEGjswyQIPAYWPDfbA4IeW3o.svg\",srcSet:\"https://framerusercontent.com/images/zZwEGjswyQIPAYWPDfbA4IeW3o.svg?scale-down-to=512 512w,https://framerusercontent.com/images/zZwEGjswyQIPAYWPDfbA4IeW3o.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zZwEGjswyQIPAYWPDfbA4IeW3o.svg 1053w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:617,intrinsicWidth:1053,loading:getLoadingLazyAtYPosition(5122.949005126953),positionX:\"center\",positionY:\"center\",sizes:\"1053px\",src:\"https://framerusercontent.com/images/zZwEGjswyQIPAYWPDfbA4IeW3o.svg\",srcSet:\"https://framerusercontent.com/images/zZwEGjswyQIPAYWPDfbA4IeW3o.svg?scale-down-to=512 512w,https://framerusercontent.com/images/zZwEGjswyQIPAYWPDfbA4IeW3o.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zZwEGjswyQIPAYWPDfbA4IeW3o.svg 1053w\"},className:\"framer-1jfaq9m\",\"data-framer-name\":\"Untitled 1\",name:\"Untitled 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16cekl8-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"IzCgYLohM\",isMixedBorderRadius:false,isRed:true,layoutId:\"IzCgYLohM\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/JfDv326Cwek?si=vg1_hYGb0T-_7ziY\",width:\"100%\"})})})})})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rzkns2 hidden-3vhoic\",\"data-framer-name\":\"5-New_1\",name:\"5-New_1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"... In with the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"New.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(160, 53, 39)\"},children:\" \"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"147px\",\"--framer-line-height\":\"150%\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"147px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"... In with the \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"147px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgba(241, 181, 61, 1)\"},children:\"New.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"147px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgba(160, 53, 39, 1)\"},children:\" \"})]})}),className:\"framer-1xqxjbj\",\"data-framer-name\":\"... In with the New.\",fonts:[\"GF;Barlow-700\"],name:\"... In with the New.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Our Homepage\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Following a comprehensive analysis of the Shabazz website's current user experience, we've implemented strategic design upgrades to address user challenges that we observed during our user research. The result? A more vibrant and engaging website that pulls its users in, giving them quick and easy access to Shabazz\u2019s whirlwind of flavor.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Our Homepage\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Following a comprehensive analysis of the Shabazz website's current user experience, we've implemented strategic design upgrades to address user challenges that we observed during our user research. The result? A more vibrant and engaging website that pulls its users in, giving them quick and easy access to Shabazz\u2019s whirlwind of flavor.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-pk6kzn\",\"data-framer-name\":\"Our Homepage Following a comprehensive analysis of the Shabazz website's current user experience, we've implemented strategic design upgrades to address user challenges that we observed during our user research. The result? A more vibrant and engaging website that pulls its users in, giving them quick and easy access to Shabazz\u2019s whirlwind of flavor.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Our Homepage Following a comprehensive analysis of the Shabazz website's current user experience, we've implemented strategic design upgrades to address user challenges that we observed during our user research. The result? A more vibrant and engaging website that pulls its users in, giving them quick and easy access to Shabazz\u2019s whirlwind of flavor.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"At a Glance:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bold visuals:\\xa0Hero image and impactful food shots captivate visitors.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Strategic user flow:\\xa0Menu preview and arrow icons encourage exploration.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Dynamic engagement:\\xa0Carousel format showcasing user reviews builds trust.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RGVndWxhci1yZWd1bGFy\",\"--framer-font-family\":'\"Degular\", \"Degular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RGVndWxhci1yZWd1bGFy\",\"--framer-font-family\":'\"Degular\", \"Degular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RGVndWxhci1yZWd1bGFy\",\"--framer-font-family\":'\"Degular\", \"Degular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-czmr2j\",\"data-framer-name\":\"At a Glance: Bold visuals:\\xa0Hero image and impactful food shots captivate visitors. Strategic user flow:\\xa0Menu preview and arrow icons encourage exploration. Dynamic engagement:\\xa0Carousel format showcasing user reviews builds trust.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\",\"GF;Degular-regular\"],name:\"At a Glance: Bold visuals:\\xa0Hero image and impactful food shots captivate visitors. Strategic user flow:\\xa0Menu preview and arrow icons encourage exploration. Dynamic engagement:\\xa0Carousel format showcasing user reviews builds trust.\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nf3o8n hidden-3vhoic\",\"data-framer-name\":\"6-New_2\",name:\"6-New_2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i28x1f\",\"data-framer-name\":\"MACMOCK\",name:\"MACMOCK\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ijebpf\",\"data-framer-name\":\"Frame 1707480509\",name:\"Frame 1707480509\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1olki0t hidden-1653n5p\",\"data-framer-name\":\"Rectangle 540\",name:\"Rectangle 540\"}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:878,intrinsicWidth:1053,loading:getLoadingLazyAtYPosition(8308),positionX:\"center\",positionY:\"center\",sizes:\"1053px\",src:\"https://framerusercontent.com/images/aKSGyEFnbFwXMdlN1oQ8DZ0YxCQ.svg\",srcSet:\"https://framerusercontent.com/images/aKSGyEFnbFwXMdlN1oQ8DZ0YxCQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/aKSGyEFnbFwXMdlN1oQ8DZ0YxCQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aKSGyEFnbFwXMdlN1oQ8DZ0YxCQ.svg 1053w\"},className:\"framer-fgjjk5 hidden-1653n5p\",\"data-framer-name\":\"8mb.video-Z9K-j26BCypB 1\",name:\"8mb.video-Z9K-j26BCypB 1\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4880),positionX:\"center\",positionY:\"center\",sizes:\"616px\",src:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png\",srcSet:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=512 512w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png 3168w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(8226),positionX:\"center\",positionY:\"center\",sizes:\"1056px\",src:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png\",srcSet:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=512 512w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png 3168w\"},className:\"framer-4u1kju\",\"data-framer-name\":\"CHROME_SHBZ page 1\",name:\"CHROME_SHBZ page 1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aoju1h-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"SLOHYL1Wt\",isMixedBorderRadius:false,isRed:true,layoutId:\"SLOHYL1Wt\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/dQREMyHVNS4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4857),positionX:\"center\",positionY:\"center\",sizes:\"806px\",src:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png\",srcSet:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png 2744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(8180),positionX:\"center\",positionY:\"center\",sizes:\"1372px\",src:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png\",srcSet:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png 2744w\"},className:\"framer-rai6l1\",\"data-framer-name\":\"MacMOCK\",name:\"MacMOCK\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xk6zwn\",\"data-framer-name\":\"Group 1321314406\",name:\"Group 1321314406\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fefvj0\",\"data-framer-name\":\"Group 1321314409\",name:\"Group 1321314409\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5332),src:\"https://framerusercontent.com/images/uT30LHjZRWyWRf5vynZ19v124.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8872),src:\"https://framerusercontent.com/images/uT30LHjZRWyWRf5vynZ19v124.png\"},className:\"framer-1kuzxv2\",\"data-framer-name\":\"Group 1321314179\",name:\"Group 1321314179\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"Engaging User Reviews:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"Recognizing the value of customer testimonials, we've reorganized the user reviews section. A dynamic carousel format now showcases positive feedback, enhancing credibility and adding social proof. This engaging presentation inspires trust and confidence in potential diners. \"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"Engaging User Reviews:\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"Recognizing the value of customer testimonials, we've reorganized the user reviews section. A dynamic carousel format now showcases positive feedback, enhancing credibility and adding social proof. This engaging presentation inspires trust and confidence in potential diners.\"})})]}),className:\"framer-1ibfpoo\",\"data-framer-name\":\"Engaging User Reviews: Recognizing the value of customer testimonials, we've reorganized the user reviews section. A dynamic carousel format now showcases positive feedback, enhancing credibility and adding social proof. This engaging presentation inspires trust and confidence in potential diners.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Engaging User Reviews: Recognizing the value of customer testimonials, we've reorganized the user reviews section. A dynamic carousel format now showcases positive feedback, enhancing credibility and adding social proof. This engaging presentation inspires trust and confidence in potential diners.\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t77ufc\",\"data-framer-name\":\"Group 1321314410\",name:\"Group 1321314410\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4661),src:\"https://framerusercontent.com/images/ssEYtnDpkEHoUGfklRpNDxRHWw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8118),src:\"https://framerusercontent.com/images/ssEYtnDpkEHoUGfklRpNDxRHWw.png\"},className:\"framer-nqwgrx\",\"data-framer-name\":\"Group 1321314177 1\",name:\"Group 1321314177 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(63, 22, 22, 0.93)\"},children:\"Captivating First Impression:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(63, 22, 22, 0.93)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(63, 22, 22, 0.93)\"},children:\"The homepage now features a hero section dominated by a large, high-quality image, instantly capturing attention and showcasing your culinary artistry. This scroll-stopping visual sets the stage for an immersive dining experience. \"})]}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(63, 22, 22, 0.9300000071525574)\"},children:\"Captivating First Impression:\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(63, 22, 22, 0.9300000071525574)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(63, 22, 22, 0.9300000071525574)\"},children:\"The homepage now features a hero section dominated by a large, high-quality image, instantly capturing attention and showcasing your culinary artistry. This scroll-stopping visual sets the stage for an immersive dining experience.\"})})]}),className:\"framer-s694f6\",\"data-framer-name\":\"Captivating First Impression: The homepage now features a hero section dominated by a large, high-quality image, instantly capturing attention and showcasing your culinary artistry. This scroll-stopping visual sets the stage for an immersive dining experience.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Captivating First Impression: The homepage now features a hero section dominated by a large, high-quality image, instantly capturing attention and showcasing your culinary artistry. This scroll-stopping visual sets the stage for an immersive dining experience.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2zkbw4\",\"data-framer-name\":\"Group 1321314407\",name:\"Group 1321314407\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4654),src:\"https://framerusercontent.com/images/lCrStR2FJHNpjKdAbahKdQ5SExI.png\"},transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8126),src:\"https://framerusercontent.com/images/lCrStR2FJHNpjKdAbahKdQ5SExI.png\"},className:\"framer-f4d5wb\",\"data-framer-name\":\"Group 1321314181\",name:\"Group 1321314181\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"Streamlined Menu Discovery:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"To entice immediate engagement, we've introduced a prominent menu preview highlighting your most popular dishes. This strategic placement acts as a gateway to deeper menu exploration, potentially increasing online orders. \"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"Streamlined Menu Discovery:\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"To entice immediate engagement, we've introduced a prominent menu preview highlighting your most popular dishes. This strategic placement acts as a gateway to deeper menu exploration, potentially increasing online orders.\"})})]}),className:\"framer-1r0mlwz\",\"data-framer-name\":\"Streamlined Menu Discovery: To entice immediate engagement, we've introduced a prominent menu preview highlighting your most popular dishes. This strategic placement acts as a gateway to deeper menu exploration, potentially increasing online orders.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Streamlined Menu Discovery: To entice immediate engagement, we've introduced a prominent menu preview highlighting your most popular dishes. This strategic placement acts as a gateway to deeper menu exploration, potentially increasing online orders.\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i9mkx1\",\"data-framer-name\":\"Group 1321314408\",name:\"Group 1321314408\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5331),src:\"https://framerusercontent.com/images/0U0cF41oWVwK2aQZQVL2ci7Ziw.png\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8520),src:\"https://framerusercontent.com/images/0U0cF41oWVwK2aQZQVL2ci7Ziw.png\"},className:\"framer-s8uvfu\",\"data-framer-name\":\"Group 1321314175\",name:\"Group 1321314175\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"Enhanced Food Showcase:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"Moving away from the collage layout, we've prioritized larger, mouthwatering food images within the menu section. Each visually enticing picture is paired with a clear, concise dish description, further enticing exploration. An intuitive arrow icon subtly encourages users to delve deeper into the full menu. \"})]}),transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"Enhanced Food Showcase:\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"Moving away from the collage layout, we've prioritized larger, mouthwatering food images within the menu section. Each visually enticing picture is paired with a clear, concise dish description, further enticing exploration. An intuitive arrow icon subtly encourages users to delve deeper into the full menu.\"})})]}),className:\"framer-1ppcos4\",\"data-framer-name\":\"Enhanced Food Showcase: Moving away from the collage layout, we've prioritized larger, mouthwatering food images within the menu section. Each visually enticing picture is paired with a clear, concise dish description, further enticing exploration. An intuitive arrow icon subtly encourages users to delve deeper into the full menu.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Enhanced Food Showcase: Moving away from the collage layout, we've prioritized larger, mouthwatering food images within the menu section. Each visually enticing picture is paired with a clear, concise dish description, further enticing exploration. An intuitive arrow icon subtly encourages users to delve deeper into the full menu.\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vvwn0e hidden-3vhoic\",\"data-framer-name\":\"7-New_3\",name:\"7-New_3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Our Menu\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"To offer a fresh, user-centric experience, we implemented the following improvements based on user research and A/B testing and believe these improvements will transform Shabazz's online menu into a visually appealing, informative, and interactive tool that drives customer engagement and online sales.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Our Menu\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"To offer a fresh, user-centric experience, we implemented the following improvements based on user research and A/B testing and believe these improvements will transform Shabazz's online menu into a visually appealing, informative, and interactive tool that drives customer engagement and online sales.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-krvesh\",\"data-framer-name\":\"Our Menu To offer a fresh, user-centric experience, we implemented the following improvements based on user research and A/B testing and believe these improvements will transform Shabazz's online menu into a visually appealing, informative, and interactive tool that drives customer engagement and online sales.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Our Menu To offer a fresh, user-centric experience, we implemented the following improvements based on user research and A/B testing and believe these improvements will transform Shabazz's online menu into a visually appealing, informative, and interactive tool that drives customer engagement and online sales.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RGVndWxhci03MDA=\",\"--framer-font-family\":'\"Degular\", \"Degular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"At a Glance:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Elevated User Experience: Increased accessibility and visual clarity will lead to a more enjoyable and efficient ordering experience.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Customer Confidence: Detailed descriptions and high-quality visuals will build trust and encourage new and returning customers to try dishes.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Boosted Conversions: A user-friendly interface, coupled with highlighted deals or popular choices, is expected to increase online orders through the website.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RGVndWxhci1yZWd1bGFy\",\"--framer-font-family\":'\"Degular\", \"Degular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RGVndWxhci1yZWd1bGFy\",\"--framer-font-family\":'\"Degular\", \"Degular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-a49q45\",\"data-framer-name\":\"At a Glance: Elevated User Experience: Increased accessibility and visual clarity will lead to a more enjoyable and efficient ordering experience. Customer Confidence: Detailed descriptions and high-quality visuals will build trust and encourage new and returning customers to try dishes. Boosted Conversions: A user-friendly interface, coupled with highlighted deals or popular choices, is expected to increase online orders through the website.\",fonts:[\"GF;Degular-700\",\"GF;Barlow-regular\",\"GF;Degular-regular\"],name:\"At a Glance: Elevated User Experience: Increased accessibility and visual clarity will lead to a more enjoyable and efficient ordering experience. Customer Confidence: Detailed descriptions and high-quality visuals will build trust and encourage new and returning customers to try dishes. Boosted Conversions: A user-friendly interface, coupled with highlighted deals or popular choices, is expected to increase online orders through the website.\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xrp067 hidden-3vhoic\",\"data-framer-name\":\"8-New_4\",name:\"8-New_4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jqidkk\",\"data-framer-name\":\"menu\",name:\"menu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17dxhxr\",\"data-framer-name\":\"MACMOCK\",name:\"MACMOCK\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7037),positionX:\"center\",positionY:\"center\",sizes:\"628px\",src:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png\",srcSet:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=512 512w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png 3168w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10591),positionX:\"center\",positionY:\"center\",sizes:\"1056px\",src:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png\",srcSet:\"https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=512 512w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/As7K027rcNinfoHE5q0pEuz30BY.png 3168w\"},className:\"framer-sq1rvr\",\"data-framer-name\":\"CHROME_SHBZ page 1\",name:\"CHROME_SHBZ page 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7010),positionX:\"center\",positionY:\"center\",sizes:\"806px\",src:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png\",srcSet:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png 2744w\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10545),positionX:\"center\",positionY:\"center\",sizes:\"1372px\",src:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png\",srcSet:\"https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aJb7VbUkuYO8EHcKs5qkdBGn8.png 2744w\"},className:\"framer-iloru1\",\"data-framer-name\":\"MacMOCK\",name:\"MacMOCK\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s5xuha\",\"data-framer-name\":\"Frame 1707480509\",name:\"Frame 1707480509\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ita184 hidden-1653n5p\",\"data-framer-name\":\"Rectangle 540\",name:\"Rectangle 540\"}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:878,intrinsicWidth:1053,loading:getLoadingLazyAtYPosition(10675.876983642578),positionX:\"center\",positionY:\"center\",sizes:\"1053px\",src:\"https://framerusercontent.com/images/4lINhKhdcOTHzq0lCQGA99bK9M.svg\",srcSet:\"https://framerusercontent.com/images/4lINhKhdcOTHzq0lCQGA99bK9M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/4lINhKhdcOTHzq0lCQGA99bK9M.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4lINhKhdcOTHzq0lCQGA99bK9M.svg 1053w\"},className:\"framer-1xi6fvt hidden-1653n5p\",\"data-framer-name\":\"Screen Recording 2024-06-10 at 9.22.24\u202FAM 1\",name:\"Screen Recording 2024-06-10 at 9.22.24\u202FAM 1\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qdksnq-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ExYioYoua\",isMixedBorderRadius:false,isRed:true,layoutId:\"ExYioYoua\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/j3l_2XjfQ-8?si=m_MHy_wQNJbM-MKx\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z11dw3\",\"data-framer-name\":\"Group 1321314412\",name:\"Group 1321314412\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6824.5),src:\"https://framerusercontent.com/images/uT30LHjZRWyWRf5vynZ19v124.png\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10545),src:\"https://framerusercontent.com/images/uT30LHjZRWyWRf5vynZ19v124.png\"},className:\"framer-1epm0d3\",\"data-framer-name\":\"Group 1321314179 1\",name:\"Group 1321314179 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"Highlights Banner:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"Prominently featuring customer favorites via a banner, instead of disruptive popup ads! This is geared towards guiding users towards delicious options, simplifying the decision-making process.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"Highlights Banner:\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"Prominently featuring customer favorites via a banner, instead of disruptive popup ads! This is geared towards guiding users towards delicious options, simplifying the decision-making process.\"})})]}),className:\"framer-1g0bg5h\",\"data-framer-name\":\"Highlights Banner: Prominently featuring customer favorites via a banner, instead of disruptive popup ads! This is geared towards guiding users towards delicious options, simplifying the decision-making process.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Highlights Banner: Prominently featuring customer favorites via a banner, instead of disruptive popup ads! This is geared towards guiding users towards delicious options, simplifying the decision-making process.\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3xapqx\",\"data-framer-name\":\"Group 1321314411\",name:\"Group 1321314411\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7474.5),src:\"https://framerusercontent.com/images/aNCh57Lem3e0bdwCsZz83yTohI.png\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(11383),src:\"https://framerusercontent.com/images/aNCh57Lem3e0bdwCsZz83yTohI.png\"},className:\"framer-5okc6k\",\"data-framer-name\":\"Group 1321314176 1\",name:\"Group 1321314176 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"Accessibility Focus:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"\\xa0Every element - from text to images \u2013 is optimized for clear visibility across devices and for users with varying visual abilities.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"Accessibility Focus:\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"\\xa0Every element - from text to images \u2013 is optimized for clear visibility across devices and for users with varying visual abilities.\"})})]}),className:\"framer-a3f54a\",\"data-framer-name\":\"Accessibility Focus: \\xa0Every element - from text to images \u2013 is optimized for clear visibility across devices and for users with varying visual abilities.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Accessibility Focus: \\xa0Every element - from text to images \u2013 is optimized for clear visibility across devices and for users with varying visual abilities.\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-250wbf\",\"data-framer-name\":\"Group 1321314413\",name:\"Group 1321314413\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6857),src:\"https://framerusercontent.com/images/Z7KH0N7HoregSVwgXodEfjSmy7k.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10673),src:\"https://framerusercontent.com/images/Z7KH0N7HoregSVwgXodEfjSmy7k.png\"},className:\"framer-2wb5ok\",\"data-framer-name\":\"Group 1321314180 1\",name:\"Group 1321314180 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"Interactive Interface:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.93)\"},children:\"The new menu is no longer static.\\xa0Users can now explore categories,\\xa0view high-quality product images,\\xa0and access detailed descriptions.\"})]}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"Interactive Interface:\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(64, 22, 22, 0.9300000071525574)\"},children:\"The new menu is no longer static.\\xa0Users can now explore categories,\\xa0view high-quality product images,\\xa0and access detailed descriptions.\"})})]}),className:\"framer-1gdh8wr\",\"data-framer-name\":\"Interactive Interface: The new menu is no longer static.\\xa0Users can now explore categories,\\xa0view high-quality product images,\\xa0and access detailed descriptions.\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Interactive Interface: The new menu is no longer static.\\xa0Users can now explore categories,\\xa0view high-quality product images,\\xa0and access detailed descriptions.\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-robpoh\",\"data-framer-name\":\"Frame 1707480516\",name:\"Frame 1707480516\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Mobile Orders -  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Available NOW\"})]})})},UhGpRaA2W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Mobile Orders -  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Available NOW\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"147px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Mobile Orders -  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Available NOW\"})]})}),className:\"framer-1hcvv6g\",\"data-framer-name\":\"Mobile Orders - Available NOW\",fonts:[\"GF;Barlow-700\"],name:\"Mobile Orders - Available NOW\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Introducing the Shabazz  App!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ordering fresh fried fish has never been this easy! We\u2019re excited to bring users this new, quick way to get their seafood fix from the comfort of their homes, or while they\u2019re making it through a busy work day. Utilizing voice AI for ease of ordering, and a user profile feature for easy access to your favorites, the Shabazz App makes ordering enjoyable!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},UhGpRaA2W:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Introducing the Shabazz  App!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ordering fresh fried fish has never been this easy! We\u2019re excited to bring users this new, quick way to get their seafood fix from the comfort of their homes, or while they\u2019re making it through a busy work day. Utilizing voice AI for ease of ordering, and a user profile feature for easy access to your favorites, the Shabazz App makes ordering enjoyable!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Introducing the Shabazz  App!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ordering fresh fried fish has never been this easy! We\u2019re excited to bring users this new, quick way to get their seafood fix from the comfort of their homes, or while they\u2019re making it through a busy work day. Utilizing voice AI for ease of ordering, and a user profile feature for easy access to your favorites, the Shabazz App makes ordering enjoyable!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1pp1t5s\",\"data-framer-name\":\"Introducing the Shabazz App! Ordering fresh fried fish has never been this easy! We\u2019re excited to bring users this new, quick way to get their seafood fix from the comfort of their homes, or while they\u2019re making it through a busy work day. Utilizing voice AI for ease of ordering, and a user profile feature for easy access to your favorites, the Shabazz App makes ordering enjoyable!\",fonts:[\"GF;Barlow-700\",\"GF;Barlow-regular\"],name:\"Introducing the Shabazz App! Ordering fresh fried fish has never been this easy! We\u2019re excited to bring users this new, quick way to get their seafood fix from the comfort of their homes, or while they\u2019re making it through a busy work day. Utilizing voice AI for ease of ordering, and a user profile feature for easy access to your favorites, the Shabazz App makes ordering enjoyable!\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3bbotp\",\"data-framer-name\":\"Frame 1707480515\",name:\"Frame 1707480515\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2381),positionX:\"center\",positionY:\"center\",sizes:\"405px\",src:\"https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png\",srcSet:\"https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png?scale-down-to=1024 594w,https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png?scale-down-to=2048 1189w,https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png 1305w\"}},UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(8884),positionX:\"center\",positionY:\"center\",sizes:\"633px\",src:\"https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png\",srcSet:\"https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png?scale-down-to=1024 594w,https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png?scale-down-to=2048 1189w,https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png 1305w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(13412),positionX:\"center\",positionY:\"center\",sizes:\"1305px\",src:\"https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png\",srcSet:\"https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png?scale-down-to=1024 594w,https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png?scale-down-to=2048 1189w,https://framerusercontent.com/images/Z2eUTwf241NEPhx29olYOxy4LWM.png 1305w\"},className:\"framer-nzd489\",\"data-framer-name\":\"Frame 10\",name:\"Frame 10\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3326),positionX:\"center\",positionY:\"center\",sizes:\"374px\",src:\"https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png\",srcSet:\"https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png 3250w\"}},UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10072),positionX:\"center\",positionY:\"center\",sizes:\"735px\",src:\"https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png\",srcSet:\"https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png 3250w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(15907),positionX:\"center\",positionY:\"center\",sizes:\"1625px\",src:\"https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png\",srcSet:\"https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Beuk2DZwG42jTEhRSyTuRKA9Cw.png 3250w\"},className:\"framer-orflqj\",\"data-framer-name\":\"Frame 8\",name:\"Frame 8\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3850),positionX:\"center\",positionY:\"center\",sizes:\"371px\",src:\"https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png\",srcSet:\"https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png?scale-down-to=1024 796w,https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png?scale-down-to=2048 1593w,https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png 2466w\"}},UhGpRaA2W:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10712),positionX:\"center\",positionY:\"center\",sizes:\"707px\",src:\"https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png\",srcSet:\"https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png?scale-down-to=1024 796w,https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png?scale-down-to=2048 1593w,https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png 2466w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(17353),positionX:\"center\",positionY:\"center\",sizes:\"1233px\",src:\"https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png\",srcSet:\"https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png?scale-down-to=1024 796w,https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png?scale-down-to=2048 1593w,https://framerusercontent.com/images/dSDcJzKhF39WvaozCbR8PHdMFQ.png 2466w\"},className:\"framer-1gem8jh\",\"data-framer-name\":\"Frame 9\",name:\"Frame 9\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"New Look, Same Spirit.  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Get it While it's \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(242, 61, 61)\"},children:\"HOT!\"})]})})},UhGpRaA2W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"New Look, Same Spirit.  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Get it While it's \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(242, 61, 61)\"},children:\"HOT!\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"147px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"New Look, Same Spirit.  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(241, 181, 61)\"},children:\"Get it While it's \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(242, 61, 61)\"},children:\"HOT!\"})]})}),className:\"framer-yx7zwn\",\"data-framer-name\":\"Mobile Orders - Available NOW\",fonts:[\"GF;Barlow-700\"],name:\"Mobile Orders - Available NOW\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tnqztj\",\"data-framer-name\":\"9-End\",name:\"9-End\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4689),sizes:\"100vw\",src:\"https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png\",srcSet:\"https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png 4096w\"}},UhGpRaA2W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(12080),sizes:\"100vw\",src:\"https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png\",srcSet:\"https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(19893),sizes:\"100vw\",src:\"https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png\",srcSet:\"https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9VVaQYvisj6vgyBHj2QfkNWgbg.png 4096w\"},className:\"framer-15odyr0\",\"data-framer-name\":\"SHBZ Mock 1@3x 3\",name:\"SHBZ Mock 1@3x 3\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jjf884\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lss0j3\",\"data-framer-name\":\"Group 1321314175\",name:\"Group 1321314175\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t0z05i\",\"data-framer-name\":\"Line 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1457,name:\"Line 3\",svg:'<svg width=\"1457\" height=\"3\" viewBox=\"-1 -1 1457 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1455\" y1=\"0.5\" y2=\"0.5\" stroke=\"#575757\"/>\\n</svg>\\n',withExternalLayout:true})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:\"100vw\",y:20853,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ogy0tc-container hidden-1653n5p hidden-3vhoic\",children:/*#__PURE__*/_jsx(Footuh,{height:\"100%\",id:\"qp6Zot_xH\",layoutId:\"qp6Zot_xH\",style:{height:\"100%\",width:\"100%\"},variant:\"J4kN85AIu\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UhGpRaA2W:{height:335,width:\"100vw\",y:12729}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2tcmvg-container hidden-j32o3v hidden-3vhoic\",children:/*#__PURE__*/_jsx(Footuh,{height:\"100%\",id:\"p5khbo6RG\",layoutId:\"p5khbo6RG\",style:{height:\"100%\",width:\"100%\"},variant:\"hPAroFCuo\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{height:653,width:\"100vw\",y:4953}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2uox4w-container hidden-j32o3v hidden-1653n5p\",children:/*#__PURE__*/_jsx(Footuh,{height:\"100%\",id:\"R_PBrm9wr\",layoutId:\"R_PBrm9wr\",style:{height:\"100%\",width:\"100%\"},variant:\"ToLNq2WpI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{y:5640},UhGpRaA2W:{y:13064}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:121,width:\"100vw\",y:21262,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dyjpd7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OIOln2wqw:{variant:\"mnQwkvUVH\"},UhGpRaA2W:{variant:\"lDwL2qxcx\"}},children:/*#__PURE__*/_jsx(CR,{height:\"100%\",id:\"gSLFTSBB_\",layoutId:\"gSLFTSBB_\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WYNuOwWMO\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g2LXf.framer-15npcg5, .framer-g2LXf .framer-15npcg5 { display: block; }\",\".framer-g2LXf.framer-j32o3v { background: linear-gradient(180deg, #881400 0%, rgb(14, 12, 11) 25.225225225225223%); height: 21383px; overflow: hidden; position: relative; width: 1728px; }\",\".framer-g2LXf .framer-1wal8bz-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; }\",\".framer-g2LXf .framer-4a1rak { flex: none; height: 1118px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 64px; }\",\".framer-g2LXf .framer-1ixf7n9 { aspect-ratio: 1.9458186230819858 / 1; border-bottom-left-radius: 107px; border-bottom-right-radius: 107px; box-shadow: 0px 7px 23.899999618530273px 5px rgba(0, 0, 0, 0.2); flex: none; height: var(--framer-aspect-ratio-supported, 888px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-g2LXf .framer-15zae5b { aspect-ratio: 1.9458186230819858 / 1; border-bottom-left-radius: 107px; border-bottom-right-radius: 107px; bottom: 0px; box-shadow: 0px 7px 23.899999618530273px 5px rgba(0, 0, 0, 0.2); flex: none; height: var(--framer-aspect-ratio-supported, 415px); left: -417px; position: absolute; right: 0px; }\",\".framer-g2LXf .framer-xzt1pz { aspect-ratio: 1.9458186230819858 / 1; border-bottom-left-radius: 75px; border-bottom-right-radius: 75px; box-shadow: 0px 7px 23.899999618530273px 5px rgba(0, 0, 0, 0.2); flex: none; height: var(--framer-aspect-ratio-supported, 414px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-g2LXf .framer-1tgg9jv { flex: none; height: 1221px; left: calc(50.00000000000002% - 1203px / 2); overflow: visible; position: absolute; top: 1240px; width: 1203px; }\",\".framer-g2LXf .framer-18cq1f2 { --framer-paragraph-spacing: 0px; flex: none; height: 336px; left: 70px; position: absolute; top: 114px; white-space: pre-wrap; width: 1133px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1jpl82a { --framer-paragraph-spacing: 0px; bottom: 380px; flex: none; height: 102px; left: 295px; position: absolute; white-space: pre-wrap; width: 870px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-rg4wvb { --framer-paragraph-spacing: 0px; flex: none; height: 57px; left: calc(54.11471321695761% - 230px / 2); position: absolute; top: 0px; white-space: pre-wrap; width: 230px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-fb5lqo { --framer-paragraph-spacing: 0px; bottom: 422px; flex: none; height: 57px; left: 0px; position: absolute; white-space: pre-wrap; width: 230px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1b6x3ca { --framer-paragraph-spacing: 0px; bottom: 1px; flex: none; height: auto; left: 295px; position: absolute; white-space: pre-wrap; width: 384px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-lvk1gk { flex: none; height: 1954px; left: calc(50.00000000000002% - 1372px / 2); overflow: visible; position: absolute; top: 2865px; width: 1372px; }\",\".framer-g2LXf .framer-xs0ibu { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 42px; position: absolute; top: 1112px; white-space: pre-wrap; width: 1255px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1fvqjk9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 123px; position: absolute; top: 0px; white-space: pre-wrap; width: 1126px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-73pcxx { flex: none; height: 838px; left: 0px; overflow: visible; position: absolute; top: 247px; width: 1372px; }\",\".framer-g2LXf .framer-17d5ef6, .framer-g2LXf .framer-19igrzb, .framer-g2LXf .framer-sq1rvr { aspect-ratio: 12.878048780487806 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); left: 158px; position: absolute; top: 46px; width: 1056px; }\",\".framer-g2LXf .framer-424k1b { flex: none; height: 577px; left: calc(49.89067055393586% - 1053px / 2); overflow: hidden; position: absolute; top: 128px; width: 1053px; }\",\".framer-g2LXf .framer-1ca2nhx, .framer-g2LXf .framer-guh3a9, .framer-g2LXf .framer-1olki0t, .framer-g2LXf .framer-ita184 { background-color: #d9d9d9; flex: none; height: 577px; left: 0px; position: absolute; top: 0px; width: 1053px; }\",\".framer-g2LXf .framer-1xwd9pw { bottom: -85px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-g2LXf .framer-e6c0k6-container { bottom: -8px; flex: none; position: absolute; right: 0px; top: -6px; width: 1051px; }\",\".framer-g2LXf .framer-17zqqo4, .framer-g2LXf .framer-rai6l1 { aspect-ratio: 1.6372315035799523 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 838px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-g2LXf .framer-mc3pdv { flex: none; height: 1455px; left: calc(50.00000000000002% - 1372px / 2); overflow: visible; position: absolute; top: 4995px; width: 1372px; }\",\".framer-g2LXf .framer-1y78vrg { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 936px; transform: translateX(-50%); white-space: pre-wrap; width: 1369px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1uwk39v, .framer-g2LXf .framer-fykm9c, .framer-g2LXf .framer-17dxhxr { flex: none; height: 838px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 1372px; }\",\".framer-g2LXf .framer-62esdu, .framer-g2LXf .framer-iloru1 { aspect-ratio: 1.6372315035799523 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 838px); left: 0px; position: absolute; top: 0px; width: 1372px; }\",\".framer-g2LXf .framer-yrf92g { flex: none; height: 577px; left: 160px; overflow: hidden; position: absolute; top: 128px; width: 1053px; }\",\".framer-g2LXf .framer-1jfaq9m { flex: none; height: 617px; left: calc(50% - 1053px / 2); position: absolute; top: calc(53.457366573128795% - 617px / 2); width: 1053px; }\",\".framer-g2LXf .framer-16cekl8-container { flex: none; height: 624px; left: 0px; position: absolute; top: -36px; width: 1052px; }\",\".framer-g2LXf .framer-1rzkns2 { flex: none; height: 930px; left: calc(49.94212962962965% - 1355px / 2); overflow: visible; position: absolute; top: 6819px; width: 1355px; }\",\".framer-g2LXf .framer-1xqxjbj { --framer-paragraph-spacing: 0px; flex: none; height: 338px; left: calc(52.398523985239855% - 1290px / 2); position: absolute; top: 0px; white-space: pre-wrap; width: 1290px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-pk6kzn { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 303px; white-space: pre-wrap; width: 1339px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-czmr2j { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 335px; position: absolute; top: 705px; white-space: pre-wrap; width: 751px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1nf3o8n { flex: none; height: 1005px; left: -1px; overflow: visible; position: absolute; right: -2px; top: 8118px; }\",\".framer-g2LXf .framer-i28x1f { flex: none; height: 838px; left: 178px; overflow: visible; position: absolute; top: 62px; width: 1372px; }\",\".framer-g2LXf .framer-1ijebpf { flex: none; height: 577px; left: calc(50.03644314868805% - 1053px / 2); overflow: hidden; position: absolute; top: 128px; width: 1053px; }\",\".framer-g2LXf .framer-fgjjk5 { bottom: -301px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-g2LXf .framer-4u1kju { aspect-ratio: 12.878048780487806 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); left: 50%; position: absolute; top: 46px; transform: translateX(-50%); width: 1056px; }\",\".framer-g2LXf .framer-1aoju1h-container { flex: none; height: 656px; left: calc(50.00000000000002% - 1167px / 2); position: absolute; top: calc(54.41527446300718% - 656px / 2); width: 1167px; }\",\".framer-g2LXf .framer-1xk6zwn { flex: none; height: 1005px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 1731px; }\",\".framer-g2LXf .framer-1fefvj0 { flex: none; height: 251px; left: 0px; overflow: visible; position: absolute; top: 754px; width: 243px; }\",\".framer-g2LXf .framer-1kuzxv2, .framer-g2LXf .framer-1epm0d3 { aspect-ratio: 0.9601593625498008 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 251px); left: 0px; position: absolute; top: 0px; width: 241px; }\",\".framer-g2LXf .framer-1ibfpoo { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 52%; position: absolute; top: 54%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 232px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1t77ufc { flex: none; height: 280px; left: 10px; overflow: visible; position: absolute; top: 0px; width: 282px; }\",\".framer-g2LXf .framer-nqwgrx { aspect-ratio: 1.0071428571428571 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 280px); left: 0px; position: absolute; top: 0px; width: 282px; }\",\".framer-g2LXf .framer-s694f6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 61%; position: absolute; top: 67px; transform: translateX(-50%); white-space: pre-wrap; width: 221px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-2zkbw4 { flex: none; height: 261px; left: 1403px; overflow: visible; position: absolute; top: 8px; width: 292px; }\",\".framer-g2LXf .framer-f4d5wb, .framer-g2LXf .framer-5okc6k { aspect-ratio: 1.1187739463601531 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 261px); left: 0px; position: absolute; top: 0px; width: 292px; }\",\".framer-g2LXf .framer-1r0mlwz { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 53%; position: absolute; top: 57%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 221px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1i9mkx1 { flex: none; height: 283px; left: 1442px; overflow: visible; position: absolute; top: 402px; width: 289px; }\",\".framer-g2LXf .framer-s8uvfu { aspect-ratio: 1.0212014134275618 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 283px); left: 0px; position: absolute; top: 0px; width: 289px; }\",\".framer-g2LXf .framer-1ppcos4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 44%; position: absolute; top: 54%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 221px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-vvwn0e { flex: none; height: 684px; left: calc(50.00000000000002% - 1338px / 2); overflow: visible; position: absolute; top: 9492px; width: 1338px; }\",\".framer-g2LXf .framer-krvesh { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 1339px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-a49q45 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 335px; position: absolute; top: 402px; white-space: pre-wrap; width: 751px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1xrp067 { flex: none; height: 1183px; left: calc(50.00000000000002% - 1668px / 2); overflow: visible; position: absolute; top: 10545px; width: 1668px; }\",\".framer-g2LXf .framer-1jqidkk { flex: none; height: 838px; left: 152px; overflow: visible; position: absolute; top: 0px; width: 1372px; }\",\".framer-g2LXf .framer-1s5xuha { flex: none; height: 577px; left: 159px; overflow: hidden; position: absolute; top: 131px; width: 1053px; }\",\".framer-g2LXf .framer-1xi6fvt { flex: none; height: 878px; left: calc(50% - 1053px / 2); position: absolute; top: calc(76.0618689155248% - 878px / 2); width: 1053px; }\",\".framer-g2LXf .framer-qdksnq-container { bottom: -48px; flex: none; left: -28px; position: absolute; right: -57px; top: -15px; }\",\".framer-g2LXf .framer-z11dw3 { flex: none; height: 251px; left: 1427px; overflow: visible; position: absolute; top: 0px; width: 241px; }\",\".framer-g2LXf .framer-1g0bg5h { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 52%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 221px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-3xapqx { flex: none; height: 261px; left: 728px; overflow: visible; position: absolute; top: 838px; width: 292px; }\",\".framer-g2LXf .framer-a3f54a { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 53%; position: absolute; top: 55%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 221px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-250wbf { flex: none; height: 287px; left: 0px; overflow: visible; position: absolute; top: 128px; width: 266px; }\",\".framer-g2LXf .framer-2wb5ok { aspect-ratio: 0.926829268292683 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 287px); left: 0px; position: absolute; top: 0px; width: 266px; }\",\".framer-g2LXf .framer-1gdh8wr { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 48%; position: absolute; top: 47%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 221px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-robpoh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 179px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 12097px; transform: translateX(-50%); width: min-content; }\",\".framer-g2LXf .framer-1hcvv6g { --framer-paragraph-spacing: 0px; flex: none; height: 335px; position: relative; white-space: pre-wrap; width: 1364px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1pp1t5s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1339px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-3bbotp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 248px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 13412px; transform: translateX(-50%); width: min-content; }\",\".framer-g2LXf .framer-nzd489 { aspect-ratio: 0.5807743658210948 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2247px); position: relative; width: 1305px; }\",\".framer-g2LXf .framer-orflqj { aspect-ratio: 1.3564273789649415 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1198px); position: relative; width: 1625px; }\",\".framer-g2LXf .framer-1gem8jh { aspect-ratio: 0.7779179810725552 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1585px); position: relative; width: 1233px; }\",\".framer-g2LXf .framer-yx7zwn { --framer-paragraph-spacing: 0px; flex: none; height: 462px; left: calc(50.00000000000002% - 1694px / 2); position: absolute; top: 19307px; white-space: pre-wrap; width: 1694px; word-break: break-word; word-wrap: break-word; }\",\".framer-g2LXf .framer-1tnqztj { flex: none; height: 960px; left: 0px; overflow: visible; position: fixed; right: 0px; top: 15813px; z-index: 1; }\",\".framer-g2LXf .framer-15odyr0 { aspect-ratio: 1.8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 960px); left: 0px; position: absolute; right: 0px; top: 19893px; }\",\".framer-g2LXf .framer-1jjf884, .framer-g2LXf .framer-1lss0j3 { flex: none; height: 381px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 1728px; }\",\".framer-g2LXf .framer-t0z05i { flex: none; height: 3px; left: calc(49.97106481481482% - 1457px / 2); position: absolute; top: -1px; width: 1457px; }\",\".framer-g2LXf .framer-1ogy0tc-container { flex: none; height: 335px; left: 0px; position: absolute; right: 0px; top: 20853px; }\",\".framer-g2LXf .framer-2tcmvg-container { flex: none; height: 335px; left: 0px; position: absolute; right: 0px; top: 12729px; }\",\".framer-g2LXf .framer-2uox4w-container { flex: none; height: 653px; left: 0px; position: absolute; right: 0px; top: 4953px; }\",\".framer-g2LXf .framer-1dyjpd7-container { flex: none; height: auto; left: 0px; max-width: 100%; position: absolute; right: 0px; top: 21262px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-g2LXf .framer-robpoh, .framer-g2LXf .framer-3bbotp { gap: 0px; } .framer-g2LXf .framer-robpoh > * { margin: 0px; margin-bottom: calc(179px / 2); margin-top: calc(179px / 2); } .framer-g2LXf .framer-robpoh > :first-child, .framer-g2LXf .framer-3bbotp > :first-child { margin-top: 0px; } .framer-g2LXf .framer-robpoh > :last-child, .framer-g2LXf .framer-3bbotp > :last-child { margin-bottom: 0px; } .framer-g2LXf .framer-3bbotp > * { margin: 0px; margin-bottom: calc(248px / 2); margin-top: calc(248px / 2); } }\",\"@media (min-width: 806px) and (max-width: 1727px) { .framer-g2LXf.framer-j32o3v { height: 13185px; width: 806px; } .framer-g2LXf .framer-1wal8bz-container { left: unset; right: 0px; transform: unset; } .framer-g2LXf .framer-4a1rak { height: 3%; max-width: 100%; min-width: 100px; top: 63px; } .framer-g2LXf .framer-1tgg9jv { height: 565px; left: calc(50.00000000000002% - min(100%, max(100px, 748px)) / 2); max-width: 100%; min-width: 100px; top: 739px; width: 748px; } .framer-g2LXf .framer-18cq1f2 { height: 209px; left: 20px; right: 19px; width: unset; } .framer-g2LXf .framer-1jpl82a { bottom: unset; height: 198px; left: unset; right: 0px; top: 337px; width: 589px; } .framer-g2LXf .framer-fb5lqo { bottom: unset; top: 337px; width: 115px; } .framer-g2LXf .framer-1b6x3ca { bottom: 7px; left: 47%; transform: translateX(-50%); } .framer-g2LXf .framer-lvk1gk { height: 1196px; left: calc(50.00000000000002% - 746px / 2); top: 1524px; width: 746px; } .framer-g2LXf .framer-xs0ibu { bottom: 84px; left: 0px; top: unset; width: 745px; } .framer-g2LXf .framer-1fvqjk9 { left: 0px; right: 0px; width: unset; } .framer-g2LXf .framer-73pcxx { height: 492px; left: -30px; right: -30px; top: 150px; width: unset; } .framer-g2LXf .framer-17d5ef6 { height: var(--framer-aspect-ratio-supported, 48px); left: 50%; top: 23px; transform: translateX(-50%); width: 620px; } .framer-g2LXf .framer-424k1b, .framer-g2LXf .framer-1ijebpf { left: calc(50.00000000000002% - 1053px / 2); top: calc(49.64200477326971% - 577px / 2); } .framer-g2LXf .framer-1xwd9pw { bottom: unset; height: 389px; left: calc(49.95251661918331% - 619px / 2); right: unset; top: calc(53.89948006932411% - 389px / 2); width: 619px; } .framer-g2LXf .framer-e6c0k6-container { bottom: unset; height: 349px; left: calc(50.047483380816736% - 621px / 2); right: unset; top: calc(50.08665511265167% - 349px / 2); width: 621px; } .framer-g2LXf .framer-17zqqo4, .framer-g2LXf .framer-rai6l1 { height: var(--framer-aspect-ratio-supported, 492px); } .framer-g2LXf .framer-mc3pdv { height: 1082px; left: calc(50.00000000000002% - 738px / 2); top: 2844px; width: 738px; } .framer-g2LXf .framer-1y78vrg { top: 561px; width: 737px; } .framer-g2LXf .framer-1uwk39v { height: 948px; left: -34px; right: -34px; width: unset; } .framer-g2LXf .framer-fykm9c { aspect-ratio: 1.6372315035799523 / 1; height: var(--framer-aspect-ratio-supported, 492px); left: 50%; transform: translateX(-50%); width: 806px; } .framer-g2LXf .framer-19igrzb { height: var(--framer-aspect-ratio-supported, 48px); left: 89px; top: 29px; width: 626px; } .framer-g2LXf .framer-62esdu { height: var(--framer-aspect-ratio-supported, 492px); width: 806px; } .framer-g2LXf .framer-yrf92g { height: 338px; left: calc(50.00000000000002% - 617px / 2); top: 77px; width: 617px; } .framer-g2LXf .framer-1rzkns2 { height: 4%; left: calc(50.00000000000002% - min(100%, max(12.41%, 90.57071960297766%)) / 2); max-width: 100%; min-width: 12%; top: calc(33.88029379590563% - 4.468933436703955% / 2); width: 91%; } .framer-g2LXf .framer-1xqxjbj { height: 151px; left: calc(50.00000000000002% - 730px / 2); width: 730px; } .framer-g2LXf .framer-pk6kzn { right: 0px; top: 180px; width: unset; } .framer-g2LXf .framer-czmr2j { bottom: 116px; left: 0px; right: 0px; top: unset; width: unset; } .framer-g2LXf .framer-1nf3o8n { left: 0px; right: -3px; top: 4622px; } .framer-g2LXf .framer-i28x1f { aspect-ratio: 1.6372315035799523 / 1; height: var(--framer-aspect-ratio-supported, 492px); left: 50%; overflow: hidden; top: 48%; transform: translate(-50%, -50%); width: 806px; } .framer-g2LXf .framer-4u1kju { height: var(--framer-aspect-ratio-supported, 48px); left: 50%; top: 23px; width: 616px; } .framer-g2LXf .framer-1aoju1h-container { height: 348px; left: calc(50.00000000000002% - 627px / 2); top: calc(50.81300813008133% - 348px / 2); width: 627px; } .framer-g2LXf .framer-1xk6zwn { bottom: 0px; height: unset; left: calc(49.938195302843035% - 727px / 2); width: 727px; } .framer-g2LXf .framer-1fefvj0 { bottom: 70px; height: 225px; top: unset; width: 214px; } .framer-g2LXf .framer-1kuzxv2 { height: var(--framer-aspect-ratio-supported, 209px); width: 201px; } .framer-g2LXf .framer-1ibfpoo { left: 50%; top: 54%; width: 190px; } .framer-g2LXf .framer-1t77ufc { left: -16px; top: 39px; } .framer-g2LXf .framer-nqwgrx { height: var(--framer-aspect-ratio-supported, 203px); width: 204px; } .framer-g2LXf .framer-s694f6 { bottom: 13px; left: 37px; top: unset; transform: unset; width: 161px; } .framer-g2LXf .framer-2zkbw4 { left: unset; right: -47px; top: 9px; } .framer-g2LXf .framer-f4d5wb { height: var(--framer-aspect-ratio-supported, 212px); top: 49%; transform: translateY(-50%); width: 237px; } .framer-g2LXf .framer-1r0mlwz { left: 50%; top: 55%; width: 177px; } .framer-g2LXf .framer-1i9mkx1 { bottom: 33px; left: unset; right: -4px; top: unset; } .framer-g2LXf .framer-s8uvfu { height: var(--framer-aspect-ratio-supported, 242px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 247px; } .framer-g2LXf .framer-1ppcos4 { left: 32px; top: 51%; transform: translateY(-50%); width: 190px; } .framer-g2LXf .framer-vvwn0e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; left: calc(50.620347394540964% - 748px / 2); padding: 0px; top: 6029px; width: 748px; } .framer-g2LXf .framer-krvesh, .framer-g2LXf .framer-a49q45 { left: unset; position: relative; top: unset; width: 100%; } .framer-g2LXf .framer-1xrp067 { height: 892px; left: -431px; right: -431px; top: 6837px; width: unset; } .framer-g2LXf .framer-sq1rvr { height: var(--framer-aspect-ratio-supported, 49px); left: 50%; top: 200px; transform: translateX(-50%); width: 628px; } .framer-g2LXf .framer-iloru1 { height: var(--framer-aspect-ratio-supported, 492px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 806px; } .framer-g2LXf .framer-qdksnq-container { bottom: unset; height: 350px; left: calc(50.142450142450166% - 622px / 2); right: unset; top: calc(50.77989601386484% - 350px / 2); width: 622px; } .framer-g2LXf .framer-z11dw3 { left: 997px; top: -50px; } .framer-g2LXf .framer-1epm0d3 { height: var(--framer-aspect-ratio-supported, 175px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 168px; } .framer-g2LXf .framer-1g0bg5h { left: 50%; top: 52%; width: 157px; } .framer-g2LXf .framer-3xapqx { bottom: 14px; left: calc(52.3980815347722% - 292px / 2); top: unset; } .framer-g2LXf .framer-5okc6k { height: var(--framer-aspect-ratio-supported, 219px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 245px; } .framer-g2LXf .framer-a3f54a { left: 51%; top: 54%; width: 191px; } .framer-g2LXf .framer-250wbf { height: 220px; left: 450px; top: 0px; } .framer-g2LXf .framer-2wb5ok { height: var(--framer-aspect-ratio-supported, 202px); left: 18px; top: 20px; width: 187px; } .framer-g2LXf .framer-1gdh8wr { left: 27px; top: 56px; transform: unset; width: 157px; } .framer-g2LXf .framer-robpoh { gap: 0px; top: 8380px; } .framer-g2LXf .framer-1hcvv6g { height: 103px; width: 736px; } .framer-g2LXf .framer-1pp1t5s { width: 738px; } .framer-g2LXf .framer-3bbotp { gap: 98px; left: 51%; top: 8884px; } .framer-g2LXf .framer-nzd489 { height: var(--framer-aspect-ratio-supported, 1090px); width: 633px; } .framer-g2LXf .framer-orflqj { height: var(--framer-aspect-ratio-supported, 542px); width: 735px; } .framer-g2LXf .framer-1gem8jh { height: var(--framer-aspect-ratio-supported, 909px); width: 707px; } .framer-g2LXf .framer-yx7zwn { height: 262px; left: 0px; right: 0px; top: 11818px; width: unset; } .framer-g2LXf .framer-15odyr0 { top: 12080px; } .framer-g2LXf .framer-1dyjpd7-container { top: 13064px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-g2LXf .framer-vvwn0e, .framer-g2LXf .framer-robpoh, .framer-g2LXf .framer-3bbotp { gap: 0px; } .framer-g2LXf .framer-vvwn0e > *, .framer-g2LXf .framer-robpoh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-g2LXf .framer-vvwn0e > :first-child, .framer-g2LXf .framer-robpoh > :first-child, .framer-g2LXf .framer-3bbotp > :first-child { margin-top: 0px; } .framer-g2LXf .framer-vvwn0e > :last-child, .framer-g2LXf .framer-robpoh > :last-child, .framer-g2LXf .framer-3bbotp > :last-child { margin-bottom: 0px; } .framer-g2LXf .framer-3bbotp > * { margin: 0px; margin-bottom: calc(98px / 2); margin-top: calc(98px / 2); } }}\",\"@media (max-width: 805px) { .framer-g2LXf.framer-j32o3v { height: 5761px; width: 390px; } .framer-g2LXf .framer-4a1rak { background-color: #000000; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; height: 848px; } .framer-g2LXf .framer-1ixf7n9 { height: var(--framer-aspect-ratio-supported, 415px); right: -417px; } .framer-g2LXf .framer-1tgg9jv { height: 787px; left: calc(50.00000000000002% - 351px / 2); top: 990px; width: 351px; } .framer-g2LXf .framer-18cq1f2 { left: 0px; right: 0px; top: 64px; width: unset; } .framer-g2LXf .framer-1jpl82a { bottom: unset; left: 114px; top: 362px; width: 237px; } .framer-g2LXf .framer-rg4wvb { left: calc(50.142450142450166% - 230px / 2); } .framer-g2LXf .framer-fb5lqo { bottom: unset; top: 362px; width: 96px; } .framer-g2LXf .framer-1b6x3ca { bottom: 56px; left: 114px; width: 197px; } .framer-g2LXf .framer-robpoh { gap: 21px; top: 1953px; } .framer-g2LXf .framer-1hcvv6g { height: 103px; width: 365px; } .framer-g2LXf .framer-1pp1t5s { width: 341px; } .framer-g2LXf .framer-3bbotp { left: 50%; top: 2381px; } .framer-g2LXf .framer-nzd489 { height: var(--framer-aspect-ratio-supported, 697px); width: 405px; } .framer-g2LXf .framer-orflqj { height: var(--framer-aspect-ratio-supported, 276px); width: 374px; } .framer-g2LXf .framer-1gem8jh { height: var(--framer-aspect-ratio-supported, 477px); width: 371px; } .framer-g2LXf .framer-yx7zwn { height: 141px; left: calc(50.00000000000002% - 342px / 2); top: 4510px; width: 342px; } .framer-g2LXf .framer-15odyr0 { top: 4689px; } .framer-g2LXf .framer-1dyjpd7-container { top: 5640px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-g2LXf .framer-robpoh { gap: 0px; } .framer-g2LXf .framer-robpoh > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-g2LXf .framer-robpoh > :first-child { margin-top: 0px; } .framer-g2LXf .framer-robpoh > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21383\n * @framerIntrinsicWidth 1728\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UhGpRaA2W\":{\"layout\":[\"fixed\",\"fixed\"]},\"OIOln2wqw\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerjCfkrRPln=withCSS(Component,css,\"framer-g2LXf\");export default FramerjCfkrRPln;FramerjCfkrRPln.displayName=\"Page\";FramerjCfkrRPln.defaultProps={height:21383,width:1728};addFonts(FramerjCfkrRPln,[{explicitInter:true,fonts:[{family:\"Barlow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPDsE46HsxnA.woff2\",weight:\"400\"},{family:\"Barlow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c5VAtlT47dw.woff2\",weight:\"700\"},{family:\"Barlow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc5VAtlT47dw.woff2\",weight:\"300\"}]},...NavigationFonts,...YouTubeFonts,...FootuhFonts,...CRFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjCfkrRPln\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UhGpRaA2W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OIOln2wqw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"21383\",\"framerIntrinsicWidth\":\"1728\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavigationFonts", "getFonts", "H47QbADxA_default", "YouTubeFonts", "Youtube", "FootuhFonts", "VPf6zFJb7_default", "CRFonts", "iWURWiOUP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "SVG", "css", "FramerjCfkrRPln", "withCSS", "jCfkrRPln_default", "addFonts", "__FramerMetadata__"]
}
