{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/fjvX25js3INqrNkzvUVS/dmxB3lNVMVlV8hBzERF8/TypeIt.js", "ssg:https://framerusercontent.com/modules/sVbkZNcZ7aiz7uxDPbnP/R6g6EmxRRR3YWz5yI98I/niGfRBOk4.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import*as React from\"react\";import{motion}from\"framer-motion\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function TypeIt({phrases,typingSpeed,erasingSpeed,delayBetween,fontSize,fontFamily,fontWeight,color,fixedTextColor,letterSpacing,lineHeight,prefixText,suffixText,direction,spacing,verticalAlignment,loop}){const[currentPhraseIndex,setCurrentPhraseIndex]=useState(0);const[displayedText,setDisplayedText]=useState(\"\");const[isErasing,setIsErasing]=useState(false);const adjustedTypingSpeed=500-typingSpeed;const adjustedErasingSpeed=500-erasingSpeed;useEffect(()=>{const currentPhrase=phrases[currentPhraseIndex];let timeout;if(isErasing){if(displayedText.length>0){timeout=setTimeout(()=>{setDisplayedText(prev=>prev.slice(0,-1));},adjustedErasingSpeed);}else{setIsErasing(false);if(loop){setCurrentPhraseIndex(prev=>prev===phrases.length-1?0:prev+1);}}}else{if(displayedText.length<currentPhrase.length){timeout=setTimeout(()=>{setDisplayedText(prev=>currentPhrase.slice(0,prev.length+1));},adjustedTypingSpeed);}else{timeout=setTimeout(()=>{if(loop){setIsErasing(true);}},delayBetween);}}return()=>clearTimeout(timeout);},[displayedText,isErasing,phrases,currentPhraseIndex,adjustedTypingSpeed,adjustedErasingSpeed,delayBetween,loop]);const textAlign=verticalAlignment===\"left\"?\"flex-start\":verticalAlignment===\"right\"?\"flex-end\":\"center\";// Fonction pour g\u00E9rer les retours \u00E0 la ligne et le curseur clignotant\nconst formatTextWithCursor=text=>{const textLines=text.split(\"\\n\");const lastLine=textLines.pop()// La derni\u00E8re ligne du texte\n;return /*#__PURE__*/_jsxs(_Fragment,{children:[textLines.map((line,index)=>/*#__PURE__*/_jsxs(React.Fragment,{children:[line,/*#__PURE__*/_jsx(\"br\",{})]},index)),/*#__PURE__*/_jsx(\"span\",{children:lastLine}),/*#__PURE__*/_jsx(motion.span,{animate:{opacity:[1,0]},transition:{duration:.5,repeat:Infinity},style:{borderRight:\"20px solid\",marginLeft:2,height:\"1em\",display:\"inline-block\"}},\"cursor\")]});};return /*#__PURE__*/_jsxs(\"div\",{style:{fontSize,fontFamily,fontWeight,color,letterSpacing,lineHeight,whiteSpace:\"pre-wrap\",overflow:\"visible\",display:\"flex\",flexDirection:direction===\"horizontal\"?\"row\":\"column\",alignItems:direction===\"horizontal\"?\"center\":textAlign,justifyContent:direction===\"horizontal\"?\"flex-start\":\"center\",position:\"relative\",textAlign:direction===\"vertical\"?verticalAlignment:\"left\",gap:prefixText||suffixText?spacing:0,width:\"100%\",height:\"100%\",boxSizing:\"border-box\",padding:0},children:[prefixText&&/*#__PURE__*/_jsx(\"span\",{style:{color:fixedTextColor},children:prefixText},\"prefix\"),/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(\"span\",{children:formatTextWithCursor(displayedText)})}),suffixText&&/*#__PURE__*/_jsx(\"span\",{style:{color:fixedTextColor},children:suffixText},\"suffix\")]});}TypeIt.defaultProps={phrases:[\"Hello, World!\\nHow are you?\",\"Welcome to Framer!\",\"Let's build something amazing!\"],typingSpeed:300,erasingSpeed:300,delayBetween:2e3,fontSize:24,fontFamily:\"Inter\",fontWeight:400,color:\"#000\",fixedTextColor:\"#888\",letterSpacing:0,lineHeight:1.5,prefixText:\"\",suffixText:\"\",direction:\"horizontal\",spacing:12,verticalAlignment:\"center\",loop:true};/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */addPropertyControls(TypeIt,{phrases:{type:ControlType.Array,title:\"Words / Phrases\",control:{type:ControlType.String},defaultValue:[\"Hello, World!\",\"Welcome to Framer!\",\"Let's build something amazing!\"]},typingSpeed:{type:ControlType.Number,title:\"Typing Speed\",defaultValue:150,min:50,max:1e3},erasingSpeed:{type:ControlType.Number,title:\"Erasing Speed\",defaultValue:100,min:50,max:1e3},delayBetween:{type:ControlType.Number,title:\"Delay Between Phrases\",defaultValue:2e3,min:500,max:1e4},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:24},fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Inter\"},fontWeight:{type:ControlType.Number,title:\"Font Weight\",defaultValue:400},color:{type:ControlType.Color,title:\"Animated Text Color\",defaultValue:\"#000\"},fixedTextColor:{type:ControlType.Color,title:\"Fixed Text Color\",defaultValue:\"#888\"},letterSpacing:{type:ControlType.Number,title:\"Letter Spacing\",defaultValue:0,min:-5,max:20,step:.1},lineHeight:{type:ControlType.Number,title:\"Line Height\",defaultValue:1.5,min:.5,max:3,step:.1},prefixText:{type:ControlType.String,title:\"Prefix Text\",defaultValue:\"\"},suffixText:{type:ControlType.String,title:\"Suffix Text\",defaultValue:\"\"},direction:{type:ControlType.Enum,title:\"Direction\",defaultValue:\"horizontal\",options:[\"horizontal\",\"vertical\"],optionTitles:[\"Horizontal\",\"Vertical\"]},spacing:{type:ControlType.Number,title:\"Spacing\",defaultValue:8,min:0,max:50,step:1},verticalAlignment:{type:ControlType.Enum,title:\"Vertical Alignment\",defaultValue:\"center\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],hidden:props=>props.direction!==\"vertical\"},loop:{type:ControlType.Boolean,title:\"Loop\",defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TypeIt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TypeIt.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,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/pmTbRQbtbr0WQGGzWVgB/fCuBEbxGALUxHBT0868h/c_t3cLF6K.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/utm02YkN6mr6uzICDfIm/0It20BefrPiq6sEF5aBm/P4naAylNt.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tSKLNOk6NAkvWxgYXD1f/7mvPZE11yvA7Fi35MkJs/WCt3jIOT0.js\";const enabledGestures={SrjbbCRl9:{hover:true},t5RIdoSiW:{hover:true},xWNdkEJXQ:{hover:true}};const cycleOrder=[\"xWNdkEJXQ\",\"t5RIdoSiW\",\"SrjbbCRl9\",\"kSm7wjnAC\",\"iaA9byQJk\",\"GSJOUvtZy\"];const serializationHash=\"framer-BM4Lw\";const variantClassNames={GSJOUvtZy:\"framer-v-7xqdx0\",iaA9byQJk:\"framer-v-1xbydx\",kSm7wjnAC:\"framer-v-1995wjm\",SrjbbCRl9:\"framer-v-rjog0k\",t5RIdoSiW:\"framer-v-gkzwxo\",xWNdkEJXQ:\"framer-v-my1rw7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Fond-noir\":\"GSJOUvtZy\",\"Mobile-menu\":\"kSm7wjnAC\",\"Sans-fond\":\"iaA9byQJk\",MENU:\"xWNdkEJXQ\",PC:\"t5RIdoSiW\",Tablette:\"SrjbbCRl9\"};const getProps=({height,id,nombre,texte,width,...props})=>{return{...props,gaIBEftfC:texte??props.gaIBEftfC??\"Moyens de productions\",HrMA_fOEo:nombre??props.HrMA_fOEo??\"32\",variant:humanReadableVariantMap[props.variant]??props.variant??\"xWNdkEJXQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gaIBEftfC,HrMA_fOEo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xWNdkEJXQ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-my1rw7\",className,classNames),\"data-border\":true,\"data-framer-name\":\"MENU\",layoutDependency:layoutDependency,layoutId:\"xWNdkEJXQ\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{\"SrjbbCRl9-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"t5RIdoSiW-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"xWNdkEJXQ-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},GSJOUvtZy:{\"--border-color\":\"var(--token-80553ba9-ef4b-4726-8032-c9fa486539ce, rgb(255, 255, 255))\",backgroundColor:\"var(--token-834b5f90-5205-40fd-a04e-218c6fc9cc7e, rgb(0, 0, 0))\"},iaA9byQJk:{\"--border-color\":\"var(--token-834b5f90-5205-40fd-a04e-218c6fc9cc7e, rgb(0, 0, 0))\"}},...addPropertyOverrides({\"SrjbbCRl9-hover\":{\"data-framer-name\":undefined},\"t5RIdoSiW-hover\":{\"data-framer-name\":undefined},\"xWNdkEJXQ-hover\":{\"data-framer-name\":undefined},GSJOUvtZy:{\"data-framer-name\":\"Fond-noir\"},iaA9byQJk:{\"data-framer-name\":\"Sans-fond\"},kSm7wjnAC:{\"data-framer-name\":\"Mobile-menu\"},SrjbbCRl9:{\"data-framer-name\":\"Tablette\"},t5RIdoSiW:{\"data-framer-name\":\"PC\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rq53n1\",\"data-styles-preset\":\"WCt3jIOT0\",children:\"Moyens de productions\"})}),className:\"framer-1wjfaua\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KDVbRi5Ts\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gaIBEftfC,variants:{GSJOUvtZy:{\"--extracted-a0htzi\":\"var(--token-80553ba9-ef4b-4726-8032-c9fa486539ce, rgb(255, 255, 255))\"},iaA9byQJk:{\"--extracted-a0htzi\":\"var(--token-834b5f90-5205-40fd-a04e-218c6fc9cc7e, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GSJOUvtZy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-80553ba9-ef4b-4726-8032-c9fa486539ce, rgb(255, 255, 255)))\"},children:\"Moyens de productions\"})}),fonts:[\"GF;Questrial-regular\"]},iaA9byQJk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-834b5f90-5205-40fd-a04e-218c6fc9cc7e, rgb(0, 0, 0)))\"},children:\"Moyens de productions\"})}),fonts:[\"GF;Questrial-regular\"]},kSm7wjnAC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qkkmji\",\"data-styles-preset\":\"P4naAylNt\",children:\"Moyens de productions\"})})},SrjbbCRl9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-70rnz5\",\"data-styles-preset\":\"c_t3cLF6K\",children:\"Moyens de productions\"})})},t5RIdoSiW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-70rnz5\",\"data-styles-preset\":\"c_t3cLF6K\",children:\"Moyens de productions\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"155px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"32\"})}),className:\"framer-17tj1jx\",fonts:[\"GF;Questrial-regular\"],layoutDependency:layoutDependency,layoutId:\"EHmK4z_zd\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:HrMA_fOEo,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GSJOUvtZy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"32\"})})},iaA9byQJk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"32\"})})},kSm7wjnAC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"32\"})})},SrjbbCRl9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"32\"})})},t5RIdoSiW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"32\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14u31kg\",layoutDependency:layoutDependency,layoutId:\"ORhYVBrS1\",style:{backgroundColor:\"rgb(255, 255, 255)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BM4Lw.framer-v1ie24, .framer-BM4Lw .framer-v1ie24 { display: block; }\",\".framer-BM4Lw.framer-my1rw7 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; overflow: hidden; padding: 0px 40px 0px 45px; position: relative; width: min-content; }\",\".framer-BM4Lw .framer-1wjfaua { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BM4Lw .framer-17tj1jx { bottom: -160px; flex: none; height: auto; position: absolute; right: -137px; white-space: pre; width: auto; z-index: 1; }\",\".framer-BM4Lw .framer-14u31kg { bottom: -81px; flex: none; height: 80px; left: 0px; mix-blend-mode: difference; overflow: hidden; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BM4Lw.framer-my1rw7 { gap: 0px; } .framer-BM4Lw.framer-my1rw7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BM4Lw.framer-my1rw7 > :first-child { margin-top: 0px; } .framer-BM4Lw.framer-my1rw7 > :last-child { margin-bottom: 0px; } }\",\".framer-BM4Lw.framer-v-gkzwxo.framer-my1rw7, .framer-BM4Lw.framer-v-rjog0k.framer-my1rw7 { height: 45px; padding: 0px 20px 0px 20px; }\",\".framer-BM4Lw.framer-v-rjog0k .framer-17tj1jx, .framer-BM4Lw.framer-v-1xbydx .framer-17tj1jx, .framer-BM4Lw.framer-v-7xqdx0 .framer-17tj1jx { bottom: -156px; right: -4px; }\",\".framer-BM4Lw.framer-v-1995wjm.framer-my1rw7 { cursor: unset; height: 25px; padding: 0px 10px 0px 10px; }\",\".framer-BM4Lw.framer-v-1xbydx.framer-my1rw7, .framer-BM4Lw.framer-v-7xqdx0.framer-my1rw7 { cursor: unset; height: 30px; padding: 0px 20px 0px 20px; }\",\".framer-BM4Lw.framer-v-my1rw7.hover.framer-my1rw7 { padding: 0px 180px 0px 45px; }\",\".framer-BM4Lw.framer-v-my1rw7.hover .framer-1wjfaua { order: 0; }\",\".framer-BM4Lw.framer-v-my1rw7.hover .framer-17tj1jx { bottom: -90px; order: 1; right: 2px; }\",\".framer-BM4Lw.framer-v-my1rw7.hover .framer-14u31kg { bottom: 0px; height: unset; order: 2; top: 0px; }\",\".framer-BM4Lw.framer-v-gkzwxo.hover.framer-my1rw7 { padding: 0px 142px 0px 20px; }\",\".framer-BM4Lw.framer-v-gkzwxo.hover .framer-17tj1jx { bottom: -42px; right: 10px; }\",\".framer-BM4Lw.framer-v-gkzwxo.hover .framer-14u31kg, .framer-BM4Lw.framer-v-rjog0k.hover .framer-14u31kg { height: unset; top: 0px; }\",\".framer-BM4Lw.framer-v-rjog0k.hover.framer-my1rw7 { padding: 0px 140px 0px 20px; }\",\".framer-BM4Lw.framer-v-rjog0k.hover .framer-17tj1jx { bottom: -43px; right: 10px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-BM4Lw[data-border=\"true\"]::after, .framer-BM4Lw [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 552\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"t5RIdoSiW\":{\"layout\":[\"auto\",\"fixed\"]},\"SrjbbCRl9\":{\"layout\":[\"auto\",\"fixed\"]},\"kSm7wjnAC\":{\"layout\":[\"auto\",\"fixed\"]},\"iaA9byQJk\":{\"layout\":[\"auto\",\"fixed\"]},\"GSJOUvtZy\":{\"layout\":[\"auto\",\"fixed\"]},\"LSiOWSAfy\":{\"layout\":[\"auto\",\"fixed\"]},\"YAQ3Mxw6b\":{\"layout\":[\"auto\",\"fixed\"]},\"F8NTsB3Uf\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"gaIBEftfC\":\"texte\",\"HrMA_fOEo\":\"nombre\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerniGfRBOk4=withCSS(Component,css,\"framer-BM4Lw\");export default FramerniGfRBOk4;FramerniGfRBOk4.displayName=\"?\";FramerniGfRBOk4.defaultProps={height:80,width:552};addPropertyControls(FramerniGfRBOk4,{variant:{options:[\"xWNdkEJXQ\",\"t5RIdoSiW\",\"SrjbbCRl9\",\"kSm7wjnAC\",\"iaA9byQJk\",\"GSJOUvtZy\"],optionTitles:[\"MENU\",\"PC\",\"Tablette\",\"Mobile-menu\",\"Sans-fond\",\"Fond-noir\"],title:\"Variant\",type:ControlType.Enum},gaIBEftfC:{defaultValue:\"Moyens de productions\",displayTextArea:false,title:\"Texte\",type:ControlType.String},HrMA_fOEo:{defaultValue:\"32\",displayTextArea:false,title:\"nombre\",type:ControlType.String}});addFonts(FramerniGfRBOk4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Questrial\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EvCtkm20oJA.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerniGfRBOk4\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"gaIBEftfC\\\":\\\"texte\\\",\\\"HrMA_fOEo\\\":\\\"nombre\\\"}\",\"framerIntrinsicHeight\":\"80\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"t5RIdoSiW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SrjbbCRl9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"kSm7wjnAC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"iaA9byQJk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"GSJOUvtZy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"LSiOWSAfy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"YAQ3Mxw6b\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"F8NTsB3Uf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"552\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./niGfRBOk4.map"],
  "mappings": "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",
  "names": ["TypeIt", "phrases", "typingSpeed", "erasingSpeed", "delayBetween", "fontSize", "fontFamily", "fontWeight", "color", "fixedTextColor", "letterSpacing", "lineHeight", "prefixText", "suffixText", "direction", "spacing", "verticalAlignment", "loop", "currentPhraseIndex", "setCurrentPhraseIndex", "ye", "displayedText", "setDisplayedText", "isErasing", "setIsErasing", "adjustedTypingSpeed", "adjustedErasingSpeed", "ue", "currentPhrase", "timeout", "prev", "u", "p", "text", "textLines", "lastLine", "l", "line", "index", "x", "motion", "addPropertyControls", "ControlType", "props", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "nombre", "texte", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gaIBEftfC", "HrMA_fOEo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerniGfRBOk4", "withCSS", "niGfRBOk4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
