{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/CNx2eDuMwQQXHCtdqzMH/RboVKgg0BUjWvqRWGwPk/Examples.js", "ssg:https://framerusercontent.com/modules/rmcB7SNN1zcqAQhk2vT3/VZCFM5CUQTO2qk5JWYTd/M0LeFBjbj.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,PropertyOverrides,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Events from\"https://framerusercontent.com/modules/K0uRMzELv1LQSlYrW9JJ/guiG09VMSmpMyJ6rsjDJ/Events.js\";import SimpleHero from\"#framer/local/canvasComponent/aB6QFPPWB/aB6QFPPWB.js\";import Footer from\"#framer/local/canvasComponent/mhapDAJli/mhapDAJli.js\";import Navbar from\"#framer/local/canvasComponent/MMmbC3c4g/MMmbC3c4g.js\";import{withHover}from\"#framer/local/codeFile/QrtxcNR/Examples.js\";import metadataProvider from\"#framer/local/webPageMetadata/M0LeFBjbj/M0LeFBjbj.js\";const NavbarFonts=getFonts(Navbar);const SimpleHeroFonts=getFonts(SimpleHero);const EventsFonts=getFonts(Events);const MotionSectionWithHover1sx8nli=withCodeBoundaryForOverrides(motion.section,{nodeId:\"s__mAyHGH\",override:withHover,scopeId:\"M0LeFBjbj\"});const FooterFonts=getFonts(Footer);const breakpoints={fBlbARyc1:\"(max-width: 809px)\",I8JT799Br:\"(min-width: 810px) and (max-width: 1439px)\",TnUtE0XHx:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-55z08\";const variantClassNames={fBlbARyc1:\"framer-v-1fhpjzj\",I8JT799Br:\"framer-v-16r66il\",TnUtE0XHx:\"framer-v-gmsm3f\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"TnUtE0XHx\",Phone:\"fBlbARyc1\",Tablet:\"I8JT799Br\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TnUtE0XHx\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"TnUtE0XHx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-gmsm3f\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12s99e2-container\",nodeId:\"y22fWjpQZ\",scopeId:\"M0LeFBjbj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fBlbARyc1:{variant:\"DtWJpownV\"},I8JT799Br:{Qx7h4MkuB:\"var(--token-65de5233-3d49-4368-86a8-b19aaea90513, rgb(255, 255, 255))\",variant:\"Fe5lg2YYi\"}},children:/*#__PURE__*/_jsx(Navbar,{fFEgfoLMk:\"tjuz84gvt\",height:\"100%\",id:\"y22fWjpQZ\",Iz0e7LfEq:\"var(--token-a11b28a4-d917-475d-96d9-50690c22b674, rgb(0, 126, 198))\",layoutId:\"y22fWjpQZ\",Qx7h4MkuB:\"var(--token-a11b28a4-d917-475d-96d9-50690c22b674, rgb(0, 126, 198))\",style:{width:\"100%\"},uiM4cZ1Bd:\"var(--token-65de5233-3d49-4368-86a8-b19aaea90513, rgb(255, 255, 255))\",variant:\"zjS6r8Ihw\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19q8a18-container\",nodeId:\"RlhZGtM9F\",scopeId:\"M0LeFBjbj\",children:/*#__PURE__*/_jsx(SimpleHero,{height:\"100%\",id:\"RlhZGtM9F\",layoutId:\"RlhZGtM9F\",style:{width:\"100%\"},width:\"100%\",yQWEVOiDK:\"Events & Projekte\",ZBGhzxPoC:addImageAlt({pixelHeight:2658,pixelWidth:3987,src:\"https://framerusercontent.com/images/sBm7OR0BkPJ0pVQK2GSELEjVCP4.jpg\",srcSet:\"https://framerusercontent.com/images/sBm7OR0BkPJ0pVQK2GSELEjVCP4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sBm7OR0BkPJ0pVQK2GSELEjVCP4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sBm7OR0BkPJ0pVQK2GSELEjVCP4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sBm7OR0BkPJ0pVQK2GSELEjVCP4.jpg 3987w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4xt8by-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pGxn89klF\",scopeId:\"M0LeFBjbj\",children:/*#__PURE__*/_jsx(Events,{availableCategories:[\"Engineering Competition\",\"European Workshop\",\"Exkursion\",\"Fallstudie\",\"Industry Night\",\"Infoabend\",\"Infostand\",\"Kamin-Abend\",\"Kompass\",\"Messe\",\"nicht bonding\",\"Runder Tisch\",\"Semesterplaner\",\"Sonstige Events\",\"Thementag\",\"Training\",\"Vortrag\",\"Workshop\",\"Unbekannt\"],availableLocalGroups:[\"Aachen\",\"Berlin\",\"Braunschweig\",\"Dresden\",\"Erlangen\",\"Hamburg\",\"Kaiserslautern\",\"Karlsruhe\",\"N\\xfcrnberg\",\"Stuttgart\"],count:27,height:\"100%\",id:\"pGxn89klF\",layoutId:\"pGxn89klF\",showCategoriesSelector:true,showLocalGroupSelector:true,showNavigation:true,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionSectionWithHover1sx8nli,{className:\"framer-1sx8nli\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fBlbARyc1:{width:\"390px\"},I8JT799Br:{width:\"810px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:387,width:\"1440px\",y:(componentViewport?.y||0)+0+661,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lwsl22-container\",nodeId:\"mFLjbHN2S\",scopeId:\"M0LeFBjbj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fBlbARyc1:{variant:\"reeChvZPS\"},I8JT799Br:{variant:\"kH35mh2_W\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"mFLjbHN2S\",layoutId:\"mFLjbHN2S\",style:{width:\"100%\"},variant:\"FXiUntl1D\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-55z08.framer-i3a4pr, .framer-55z08 .framer-i3a4pr { display: block; }\",\".framer-55z08.framer-gmsm3f { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-55z08 .framer-12s99e2-container, .framer-55z08 .framer-19q8a18-container, .framer-55z08 .framer-4xt8by-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-55z08 .framer-1sx8nli { aspect-ratio: 1440 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 0px); overflow: hidden; position: relative; width: 100%; }\",\".framer-55z08 .framer-1lwsl22-container { flex: none; height: auto; position: relative; width: 1440px; }\",\"@media (min-width: 810px) and (max-width: 1439px) { .framer-55z08.framer-gmsm3f, .framer-55z08 .framer-1lwsl22-container { width: 810px; }}\",\"@media (max-width: 809px) { .framer-55z08.framer-gmsm3f, .framer-55z08 .framer-1lwsl22-container { width: 390px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1259\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"I8JT799Br\":{\"layout\":[\"fixed\",\"auto\"]},\"fBlbARyc1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerM0LeFBjbj=withCSS(Component,css,\"framer-55z08\");export default FramerM0LeFBjbj;FramerM0LeFBjbj.displayName=\"Page\";FramerM0LeFBjbj.defaultProps={height:1259,width:1440};addFonts(FramerM0LeFBjbj,[{explicitInter:true,fonts:[]},...NavbarFonts,...SimpleHeroFonts,...EventsFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM0LeFBjbj\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"1259\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I8JT799Br\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fBlbARyc1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withHover", "Component", "props", "p", "NavbarFonts", "getFonts", "MMmbC3c4g_default", "SimpleHeroFonts", "aB6QFPPWB_default", "EventsFonts", "Events", "MotionSectionWithHover1sx8nli", "withCodeBoundaryForOverrides", "motion", "withHover", "FooterFonts", "mhapDAJli_default", "breakpoints", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "MMmbC3c4g_default", "aB6QFPPWB_default", "Events", "MotionSectionWithHover1sx8nli", "mhapDAJli_default", "css", "FramerM0LeFBjbj", "withCSS", "M0LeFBjbj_default", "addFonts", "NavbarFonts", "SimpleHeroFonts", "EventsFonts", "FooterFonts", "__FramerMetadata__"]
}
