{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/0UiFCGeg0LzoAgXEy6eX/IF5zdRI37oj8QWXtwh4S/MasonryLayout.js", "ssg:https://framerusercontent.com/modules/XtruJ1IoG4hKSDKxYLhE/4kZ6o40hPXUSP2XMAKmL/Oplf94iGD.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";///////////////////////////\n// Code from Nikolay Goncharuk on GitHub:\n// https://github.com/GoncharukBro/react-smart-masonry/blob/master/src/Masonry.tsx\n// https://github.com/GoncharukBro/react-smart-masonry/blob/master/src/useResize.ts\n//\n// Modified by Isaac Roberts (twitter.com/madebyisaacr)\n//\n// Copyright (c) 2021 Nikolay Goncharuk\n// MIT License\nimport{useState,useLayoutEffect,useEffect,useMemo,useRef,Children,forwardRef,isValidElement}from\"react\";function getCurrentBreakpoints(breakpoints,width){const normalizedBreakpoints=breakpoints&&Object.entries(breakpoints).sort((a,b)=>b[1]-a[1]);return normalizedBreakpoints===null||normalizedBreakpoints===void 0?void 0:normalizedBreakpoints.filter(item=>item[1]<=width).map(item=>item[0]);}function getState(breakpoints,width){return{width,currentBreakpoints:getCurrentBreakpoints(breakpoints,width)};}function useResize(breakpoints){const[state,setState]=useState(()=>getState(breakpoints,0) //global.innerWidth)\n);useEffect(()=>{const handleResize=()=>{setState(getState(breakpoints,window.innerWidth));};window.addEventListener(\"resize\",handleResize);return()=>{window.removeEventListener(\"resize\",handleResize);};},[breakpoints]);return state;}function getCurrentParam(breakpoints,param,defaultValue){if(typeof param===\"object\"){const breakpoint=breakpoints===null||breakpoints===void 0?void 0:breakpoints.find(item=>param[item]!==undefined);var _breakpoint;return breakpoint!==undefined?(_breakpoint=param[breakpoint])!==null&&_breakpoint!==void 0?_breakpoint:defaultValue:defaultValue;}return param;}const DEFAULT_COLUMNS=1;const DEFAULT_GAP=0;function MasonryComponent({breakpoints,columns=DEFAULT_COLUMNS,gap=DEFAULT_GAP,reverse=false,autoArrange=false,children,style,...otherProps},forwardedRef){const{currentBreakpoints}=useResize(breakpoints);const elements=useRef([]);const[arrange,setArrange]=useState(false);const[currentColumns,setCurrentColumns]=useState(()=>{return getCurrentParam(currentBreakpoints,columns,DEFAULT_COLUMNS);});const[currentGap,setCurrentGap]=useState(()=>{return getCurrentParam(currentBreakpoints,gap,DEFAULT_GAP);});// eslint-disable-next-line react-hooks/exhaustive-deps\nuseLayoutEffect(()=>{if(autoArrange&&!arrange)setArrange(true);return()=>{if(autoArrange&&arrange)setArrange(false);};});useEffect(()=>{const param=getCurrentParam(currentBreakpoints,columns,DEFAULT_COLUMNS);setCurrentColumns(param);},[columns,currentBreakpoints]);useEffect(()=>{const param=getCurrentParam(currentBreakpoints,gap,DEFAULT_GAP);setCurrentGap(param);},[gap,currentBreakpoints]);const layout=useMemo(()=>{if(currentColumns<1)return[];const arrayOfChildren=Children.toArray(children);if(reverse)arrayOfChildren.reverse();const newLayout=Array.from({length:currentColumns},()=>{return[];});const columnHeights=newLayout.map(()=>0);const getcolumnIndex=index=>{if(autoArrange&&arrange&&elements.current.length>0){const columnIndex=columnHeights.findIndex(item=>{return item===Math.min(...columnHeights);});const element=elements.current.find(item=>item.index===index);const elementHeight=element===null||element===void 0?void 0:element.element.getBoundingClientRect().height;columnHeights[columnIndex]+=elementHeight||0;return columnIndex;}return index%currentColumns;};arrayOfChildren.forEach((child,index)=>{if(child&&/*#__PURE__*/ isValidElement(child)){newLayout[getcolumnIndex(index)].push({element:child,index});}});return newLayout;},[arrange,autoArrange,children,currentColumns,reverse]);const temporaryElements=[];const addElement=index=>element=>{if(element!==null){temporaryElements.push({element,index});elements.current=temporaryElements;}};return /*#__PURE__*/ _jsx(\"div\",{ref:forwardedRef,style:{display:\"flex\",gap:currentGap,...style},...otherProps,children:layout.map((column,columnIndex)=>/*#__PURE__*/ _jsx(\"div\",{style:{flex:1,display:\"flex\",flexDirection:\"column\",gap:currentGap},children:column.map((item,itemIndex)=>/*#__PURE__*/ _jsx(\"div\",{ref:addElement(item.index),children:item.element},itemIndex))},columnIndex))});}const Masonry=/*#__PURE__*/ forwardRef(MasonryComponent);///////////////////////////\n/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */ export default function MasonryLayout(props){var ref;let layers=[];if(props.columnWidth==\"fill\"){for(let i=0;i<props.layers.length;i++){let layer=props.layers[i];if(!layer.props.style){layer.props.style={};}layer.props.style.width=\"100%\";layers.push(layer);}}else{layers=props.layers;}if(((ref=props.layers)===null||ref===void 0?void 0:ref.length)==0){return /*#__PURE__*/ _jsx(\"div\",{style:{minWidth:\"100px\",minHeight:\"100px\"}});}else if(props.columns==1){return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:props.gap},children:layers});}else{return /*#__PURE__*/ _jsx(Masonry,{columns:props.columns,gap:props.gap,autoArrange:props.autoArrange,reverse:false,children:layers});}};MasonryLayout.displayName=\"Masonry Layout\";MasonryLayout.defaultProps={layers:[],columns:3,columnWidth:\"fit\",autoArrange:true,gap:10};addPropertyControls(MasonryLayout,{layers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance}},columns:{type:ControlType.Number,defaultValue:MasonryLayout.defaultProps.columns,min:1,step:1,displayStepper:true,hidden(props){return props.direction==\"h\";}},columnWidth:{type:ControlType.Enum,defaultValue:MasonryLayout.defaultProps.columnWidth,options:[\"fit\",\"fill\"],optionTitles:[\"Fit\",\"Fill\"],displaySegmentedControl:true},autoArrange:{type:ControlType.Boolean,defaultValue:MasonryLayout.defaultProps.autoArrange,description:\"Arranges each layer into the shortest column.\"},gap:{type:ControlType.Number,defaultValue:MasonryLayout.defaultProps.gap,min:0}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MasonryLayout\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\"}},\"MasonryProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MasonryLayout.map", "// Generated by Framer (24d49ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sALuufQGjxL3akhZCFPP/OvzzHb7OulxuJ2hc4AqN/kWeizEuZY.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/HCNTYY9bCUIXeBsYo4Ae/gZ2YO7BjwpVK2JAN6aKp/qAGiACUC1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/q4UORyYcahX2mORQSTsl/Hp4a65AhOKbnVFS7T6Uj/xuW1XVDFh.js\";const cycleOrder=[\"woZH2s30K\"];const serializationHash=\"framer-t2xo4\";const variantClassNames={woZH2s30K:\"framer-v-s8ld2l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({country,height,id,review,title,user,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,IwgfWC4JJ:(_ref=user!==null&&user!==void 0?user:props.IwgfWC4JJ)!==null&&_ref!==void 0?_ref:\"User Name\",O3R0bSJbS:(_ref1=review!==null&&review!==void 0?review:props.O3R0bSJbS)!==null&&_ref1!==void 0?_ref1:\"Review content\",YfvWX_qdx:(_ref2=country!==null&&country!==void 0?country:props.YfvWX_qdx)!==null&&_ref2!==void 0?_ref2:\"Country\",zEblmlt7y:(_ref3=title!==null&&title!==void 0?title:props.zEblmlt7y)!==null&&_ref3!==void 0?_ref3:\"Title\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,zEblmlt7y,O3R0bSJbS,IwgfWC4JJ,YfvWX_qdx,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"woZH2s30K\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-s8ld2l\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"woZH2s30K\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-7200c9d2-a401-4782-b7ab-9081137ba9c8, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 2px 10px 0px rgba(0, 0, 0, 0.15)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ld9ns5\",\"data-framer-name\":\"5Star\",layoutDependency:layoutDependency,layoutId:\"kCYflSDFV\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:43,pixelHeight:44,pixelWidth:43,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HtiaQGoxcY17Cz7ZFE97iUmtDQM.svg\"},className:\"framer-16woqwv\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"OkU2ttfy_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:43,pixelHeight:44,pixelWidth:43,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HtiaQGoxcY17Cz7ZFE97iUmtDQM.svg\"},className:\"framer-1r56rar\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"I1xXFujaj\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:43,pixelHeight:44,pixelWidth:43,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HtiaQGoxcY17Cz7ZFE97iUmtDQM.svg\"},className:\"framer-wjmhxi\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"eYFeYSuBs\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:43,pixelHeight:44,pixelWidth:43,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HtiaQGoxcY17Cz7ZFE97iUmtDQM.svg\"},className:\"framer-qtpxn6\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"pHKppiNrt\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:43,pixelHeight:44,pixelWidth:43,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HtiaQGoxcY17Cz7ZFE97iUmtDQM.svg\"},className:\"framer-7md3f6\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"uAn4t98su\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dk5c3v\",\"data-styles-preset\":\"xuW1XVDFh\",children:\"Title\"})}),className:\"framer-1jue3k4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b2MJN_chf\",text:zEblmlt7y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ade1dl\",\"data-styles-preset\":\"kWeizEuZY\",children:\"Review content\"})}),className:\"framer-1gkn4sn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tHOxxW8fI\",text:O3R0bSJbS,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11xrcx8\",layoutDependency:layoutDependency,layoutId:\"Bz3WKCqNx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nysl4a\",\"data-styles-preset\":\"qAGiACUC1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7c86efd7-98fa-4eee-a770-2d4aba8f93c5, rgba(0, 0, 0, 0.4)))\"},children:\"User Name\"})}),className:\"framer-lumncr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rKJp3q9WI\",style:{\"--extracted-r6o4lv\":\"var(--token-7c86efd7-98fa-4eee-a770-2d4aba8f93c5, rgba(0, 0, 0, 0.4))\"},text:IwgfWC4JJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q41a1q\",layoutDependency:layoutDependency,layoutId:\"ljTa_o6Js\",style:{backgroundColor:\"var(--token-f7eb5e7e-a773-4171-be7d-7a83d3c4e42f, rgba(0, 0, 0, 0.3))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nysl4a\",\"data-styles-preset\":\"qAGiACUC1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7c86efd7-98fa-4eee-a770-2d4aba8f93c5, rgba(0, 0, 0, 0.4)))\"},children:\"Country\"})}),className:\"framer-fmw50s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RbLs1Tv1_\",style:{\"--extracted-r6o4lv\":\"var(--token-7c86efd7-98fa-4eee-a770-2d4aba8f93c5, rgba(0, 0, 0, 0.4))\"},text:YfvWX_qdx,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t2xo4.framer-1md7tn5, .framer-t2xo4 .framer-1md7tn5 { display: block; }\",\".framer-t2xo4.framer-s8ld2l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 374px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2xo4 .framer-1ld9ns5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t2xo4 .framer-16woqwv, .framer-t2xo4 .framer-1r56rar, .framer-t2xo4 .framer-wjmhxi, .framer-t2xo4 .framer-qtpxn6, .framer-t2xo4 .framer-7md3f6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-t2xo4 .framer-1jue3k4, .framer-t2xo4 .framer-1gkn4sn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t2xo4 .framer-11xrcx8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t2xo4 .framer-lumncr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t2xo4 .framer-q41a1q { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); overflow: hidden; position: relative; width: 8px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t2xo4 .framer-fmw50s { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t2xo4.framer-s8ld2l, .framer-t2xo4 .framer-1ld9ns5, .framer-t2xo4 .framer-11xrcx8 { gap: 0px; } .framer-t2xo4.framer-s8ld2l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-t2xo4.framer-s8ld2l > :first-child { margin-top: 0px; } .framer-t2xo4.framer-s8ld2l > :last-child { margin-bottom: 0px; } .framer-t2xo4 .framer-1ld9ns5 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-t2xo4 .framer-1ld9ns5 > :first-child, .framer-t2xo4 .framer-11xrcx8 > :first-child { margin-left: 0px; } .framer-t2xo4 .framer-1ld9ns5 > :last-child, .framer-t2xo4 .framer-11xrcx8 > :last-child { margin-right: 0px; } .framer-t2xo4 .framer-11xrcx8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 234\n * @framerIntrinsicWidth 374\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zEblmlt7y\":\"title\",\"O3R0bSJbS\":\"review\",\"IwgfWC4JJ\":\"user\",\"YfvWX_qdx\":\"country\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOplf94iGD=withCSS(Component,css,\"framer-t2xo4\");export default FramerOplf94iGD;FramerOplf94iGD.displayName=\"Testimonial - AppStore\";FramerOplf94iGD.defaultProps={height:234,width:374};addPropertyControls(FramerOplf94iGD,{zEblmlt7y:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},O3R0bSJbS:{defaultValue:\"Review content\",displayTextArea:true,title:\"Review\",type:ControlType.String},IwgfWC4JJ:{defaultValue:\"User Name\",displayTextArea:false,title:\"User\",type:ControlType.String},YfvWX_qdx:{defaultValue:\"Country\",displayTextArea:false,title:\"Country\",type:ControlType.String}});addFonts(FramerOplf94iGD,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOplf94iGD\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"234\",\"framerVariables\":\"{\\\"zEblmlt7y\\\":\\\"title\\\",\\\"O3R0bSJbS\\\":\\\"review\\\",\\\"IwgfWC4JJ\\\":\\\"user\\\",\\\"YfvWX_qdx\\\":\\\"country\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"374\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Oplf94iGD.map"],
  "mappings": "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",
  "names": ["getCurrentBreakpoints", "breakpoints", "width", "normalizedBreakpoints", "b", "item", "getState", "useResize", "state", "setState", "ye", "ue", "handleResize", "window", "getCurrentParam", "param", "defaultValue", "breakpoint", "_breakpoint", "DEFAULT_COLUMNS", "DEFAULT_GAP", "MasonryComponent", "columns", "gap", "reverse", "autoArrange", "children", "style", "otherProps", "forwardedRef", "currentBreakpoints", "elements", "pe", "arrange", "setArrange", "currentColumns", "setCurrentColumns", "currentGap", "setCurrentGap", "fe", "layout", "se", "arrayOfChildren", "j", "newLayout", "columnHeights", "getcolumnIndex", "index", "columnIndex", "element", "elementHeight", "child", "J", "temporaryElements", "addElement", "p", "column", "itemIndex", "Masonry", "Y", "MasonryLayout", "props", "ref", "layers", "i", "layer", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "country", "height", "id", "review", "title", "user", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "zEblmlt7y", "O3R0bSJbS", "IwgfWC4JJ", "YfvWX_qdx", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "RichText2", "css", "FramerOplf94iGD", "withCSS", "Oplf94iGD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
