{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Dp6WstTiPLFvJ3PygUDo/8ZlF9bTWOQWAvmeN0eNA/Test_contribute.js", "ssg:https://framerusercontent.com/modules/ukhaBK3OCvBELmxToSZe/ev7RivmPuMuks1zfDgSV/AK5NWHF6h.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{motion,useViewportScroll}from\"framer-motion\";// Hook to get window width with proper SSR handling.\nfunction useWindowWidth(){const[width,setWidth]=React.useState(1024);React.useEffect(()=>{if(typeof window!==\"undefined\"){setWidth(window.innerWidth);const handleResize=()=>setWidth(window.innerWidth);window.addEventListener(\"resize\",handleResize);return()=>window.removeEventListener(\"resize\",handleResize);}},[]);return width;}// Hook to detect dark mode with proper SSR handling.\nfunction usePrefersDarkMode(){const[darkMode,setDarkMode]=React.useState(false);React.useEffect(()=>{if(typeof window!==\"undefined\"&&window.matchMedia){const mq=window.matchMedia(\"(prefers-color-scheme: dark)\");setDarkMode(mq.matches);const handleChange=e=>setDarkMode(e.matches);mq.addEventListener(\"change\",handleChange);return()=>mq.removeEventListener(\"change\",handleChange);}},[]);return darkMode;}// Define styles as a function to accommodate theming and responsive breakpoints.\nconst getStyles=(darkMode,width)=>({pageContainer:{fontFamily:'\"Helvetica Neue\", Helvetica, Arial, sans-serif',lineHeight:1.6,padding:width>1199?\"2rem\":width>810?\"1.5rem\":\"1rem\",maxWidth:1200,margin:\"0 auto\",backgroundColor:darkMode?\"#121212\":\"#ffffff\",color:darkMode?\"#ffffff\":\"#121212\",minHeight:\"100vh\",fontSize:width>1199?\"20px\":width>810?\"18px\":\"16px\"},toc:{position:\"sticky\",top:20,marginBottom:\"2rem\",padding:\"1rem\",borderRadius:8,background:darkMode?\"rgba(255, 255, 255, 0.1)\":\"rgba(0, 0, 0, 0.05)\"},tocHeading:{marginTop:0},tocList:{listStyle:\"none\",padding:0},tocItem:{margin:\"0.5rem 0\",cursor:\"pointer\",transition:\"color 0.2s\"},tocItemHover:{color:\"#0070f3\",textDecoration:\"underline\"},// Container style for each content section.\n    sectionContainer:{background:darkMode?\"#1e1e1e\":\"#fff\",boxShadow:\"0 2px 8px rgba(0,0,0,0.1)\",borderRadius:\"8px\",padding:\"1rem 2rem\",marginBottom:\"2rem\"},sectionHeading:{borderBottom:\"2px solid currentColor\",paddingBottom:\"0.5rem\",marginBottom:\"1rem\"},link:{color:darkMode?\"#a0c4ff\":\"#0070f3\",textDecoration:\"none\"}});export function ContributorPage(){const darkMode=usePrefersDarkMode();const width=useWindowWidth();const[activeSection,setActiveSection]=React.useState(null);const{scrollY}=useViewportScroll();const[showBackToTop,setShowBackToTop]=React.useState(false);React.useEffect(()=>{console.log(\"ContributorPage mounted\");},[]);// Toggle Back-to-Top button based on scroll position.\nReact.useEffect(()=>{const unsubscribe=scrollY.onChange(latest=>{setShowBackToTop(latest>300);});return()=>unsubscribe&&unsubscribe();},[scrollY]);// Define sections for the interactive Table of Contents.\nconst sections=[{id:\"contributor-guidelines\",title:\"Contributor Guidelines\"},{id:\"why-contribute\",title:\"Why Contribute?\"},{id:\"submission-guidelines\",title:\"Submission Guidelines\"},{id:\"guest-articles\",title:\"Guest Articles\"},{id:\"editorial-process\",title:\"Editorial Process\"},{id:\"ethical-standards\",title:\"Ethical Standards\"},{id:\"ready-to-make-your-mark\",title:\"Ready to Make your Mark?\"}];// Update active section based on scroll position.\nReact.useEffect(()=>{const handleScroll=()=>{if(typeof document!==\"undefined\"){for(const section of sections){const element=document.getElementById(section.id);if(element){const rect=element.getBoundingClientRect();if(rect.top<=100&&rect.bottom>=100){setActiveSection(section.id);break;}}}}};window.addEventListener(\"scroll\",handleScroll);return()=>window.removeEventListener(\"scroll\",handleScroll);},[sections]);// Smooth scrolling to a section.\nconst scrollToSection=id=>{if(typeof document!==\"undefined\"){const el=document.getElementById(id);if(el){el.scrollIntoView({behavior:\"smooth\"});}}};// Animation variants.\nconst fadeIn={hidden:{opacity:0},visible:{opacity:1,transition:{duration:1}}};const slideIn={hidden:{x:-50,opacity:0},visible:{x:0,opacity:1,transition:{duration:.5}}};const fadeUp=(delay=0)=>({hidden:{opacity:0,y:20},visible:{opacity:1,y:0,transition:{duration:.5,delay}}});const styles=getStyles(darkMode,width);return /*#__PURE__*/_jsxs(\"div\",{style:styles.pageContainer,children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"sticky\",top:0,zIndex:1e3,backgroundColor:darkMode?\"#121212\":\"#ffffff\",padding:\"1rem 2rem\",boxShadow:\"0 2px 8px rgba(0,0,0,0.15)\",display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"h2\",{style:{margin:0},children:\"Call for Contributions & Guest Posts\"}),/*#__PURE__*/_jsx(motion.a,{href:\"mailto:contact@radiancefields.com\",style:{backgroundColor:\"#0070f3\",color:\"#ffffff\",padding:\"0.5rem 1rem\",borderRadius:\"4px\",textDecoration:\"none\",fontWeight:\"bold\"},whileHover:{scale:1.05},children:\"Submit Your Pitch\"})]}),/*#__PURE__*/_jsxs(motion.div,{style:styles.toc,initial:\"hidden\",animate:\"visible\",variants:slideIn,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.tocHeading,children:\"Table of Contents\"}),/*#__PURE__*/_jsx(\"ul\",{style:styles.tocList,children:sections.map(section=>/*#__PURE__*/_jsx(\"li\",{style:{...styles.tocItem,color:activeSection===section.id?\"#0070f3\":\"inherit\",fontWeight:activeSection===section.id?\"bold\":\"normal\"},onClick:()=>scrollToSection(section.id),onMouseOver:e=>{e.currentTarget.style.color=styles.tocItemHover.color;e.currentTarget.style.textDecoration=styles.tocItemHover.textDecoration;},onMouseOut:e=>{e.currentTarget.style.color=activeSection===section.id?\"#0070f3\":\"\";e.currentTarget.style.textDecoration=\"\";},children:section.title},section.id))})]}),/*#__PURE__*/_jsxs(motion.div,{id:\"contributor-guidelines\",initial:\"hidden\",whileInView:\"visible\",viewport:{once:true},variants:fadeUp(0),whileHover:{scale:1.02,boxShadow:\"0 4px 12px rgba(0,0,0,0.2)\"},transition:{duration:.2},style:styles.sectionContainer,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.sectionHeading,children:\"Contributor Guidelines\"}),/*#__PURE__*/_jsx(\"p\",{children:\"We're thrilled you're interested in contributing. We're dedicated to sharing the latest and most exciting developments in Radiance Field technology.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Our contributors are vital to our mission, bringing diverse perspectives and fresh insights.\"})]}),/*#__PURE__*/_jsxs(motion.div,{id:\"why-contribute\",initial:\"hidden\",whileInView:\"visible\",viewport:{once:true},variants:fadeUp(.1),whileHover:{scale:1.02,boxShadow:\"0 4px 12px rgba(0,0,0,0.2)\"},transition:{duration:.2},style:styles.sectionContainer,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.sectionHeading,children:\"Why Contribute?\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Tell the world what you have going on!\"}),/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{children:\"Reach a vast audience of researchers & engineers.\"}),/*#__PURE__*/_jsx(\"li\",{children:\"Network with industry experts.\"}),/*#__PURE__*/_jsx(\"li\",{children:\"Help increase the progression of research and adoption.\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{id:\"submission-guidelines\",initial:\"hidden\",whileInView:\"visible\",viewport:{once:true},variants:fadeUp(.2),whileHover:{scale:1.02,boxShadow:\"0 4px 12px rgba(0,0,0,0.2)\"},transition:{duration:.2},style:styles.sectionContainer,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.sectionHeading,children:\"Submission Guidelines\"}),/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{children:\"While we don't have strict word limits, a guideline is roughly 600 words or more.\"}),/*#__PURE__*/_jsx(\"li\",{children:\"Include a brief bio (50-100 words) & a high-resolution headshot.\"}),/*#__PURE__*/_jsx(\"li\",{children:\"Social Media Links.\"}),/*#__PURE__*/_jsx(\"li\",{children:\"Originality is key, so please ensure your work is your own.\"}),/*#__PURE__*/_jsx(\"li\",{children:\"We build article drafts utilizing Notion and Google Docs, but are flexible.\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{id:\"guest-articles\",initial:\"hidden\",whileInView:\"visible\",viewport:{once:true},variants:fadeUp(.3),whileHover:{scale:1.02,boxShadow:\"0 4px 12px rgba(0,0,0,0.2)\"},transition:{duration:.2},style:styles.sectionContainer,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.sectionHeading,children:\"Guest Articles\"}),/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"a\",{href:\"https://radiancefields.com/exploring-cross-modality-in-radiance-field-technologies-and-its-intersection-with-physical-ai\",style:styles.link,target:\"_blank\",rel:\"noopener noreferrer\",children:\"Exploring Cross-Modality in Radiance Field Technologies and its Intersection with Physical AI\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"a\",{href:\"https://radiancefields.com/3dgs-short-film-where-did-the-day-go\",style:styles.link,target:\"_blank\",rel:\"noopener noreferrer\",children:\"3DGS Short Film: Where Did The Day Go?\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"a\",{href:\"https://radiancefields.com/gaussian-splatting-in-julia\",style:styles.link,target:\"_blank\",rel:\"noopener noreferrer\",children:\"Gaussian Splatting in Julia\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"a\",{href:\"https://radiancefields.com/understanding-nerf-on-a-small-scale\",style:styles.link,target:\"_blank\",rel:\"noopener noreferrer\",children:\"Understanding NeRF on a small scale\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"a\",{href:\"https://radiancefields.com/understanding-3d-gaussian-splatting-via-render-engines\",style:styles.link,target:\"_blank\",rel:\"noopener noreferrer\",children:\"Understanding 3D Gaussian Splatting via Render Engines!\"})})]}),/*#__PURE__*/_jsx(\"p\",{children:\"Our editorial team will review your submission and get back to you within 24 hours. We may suggest revisions to ensure your piece aligns with our content standards. While we can't guarantee publication for every submission, we value every contribution and provide constructive feedback.\"})]}),/*#__PURE__*/_jsxs(motion.div,{id:\"editorial-process\",initial:\"hidden\",whileInView:\"visible\",viewport:{once:true},variants:fadeUp(.4),whileHover:{scale:1.02,boxShadow:\"0 4px 12px rgba(0,0,0,0.2)\"},transition:{duration:.2},style:styles.sectionContainer,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.sectionHeading,children:\"Editorial Process\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Our editorial team carefully reviews each submission to ensure it aligns with our standards.\"})]}),/*#__PURE__*/_jsxs(motion.div,{id:\"ethical-standards\",initial:\"hidden\",whileInView:\"visible\",viewport:{once:true},variants:fadeUp(.5),whileHover:{scale:1.02,boxShadow:\"0 4px 12px rgba(0,0,0,0.2)\"},transition:{duration:.2},style:styles.sectionContainer,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.sectionHeading,children:\"Ethical Standards\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Integrity is crucial. We adhere to high ethical standards in journalism and expect the same from our contributors. This includes avoiding conflicts of interest, ensuring authenticity, and steering clear of plagiarism.\"})]}),/*#__PURE__*/_jsxs(motion.div,{id:\"ready-to-make-your-mark\",initial:\"hidden\",whileInView:\"visible\",viewport:{once:true},variants:fadeUp(.6),whileHover:{scale:1.02,boxShadow:\"0 4px 12px rgba(0,0,0,0.2)\"},transition:{duration:.2},style:styles.sectionContainer,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.sectionHeading,children:\"Ready to Make your Mark?\"}),/*#__PURE__*/_jsx(\"p\",{children:\"We're excited to hear your ideas! Send your pitch or completed article to our editorial team and start your journey to becoming a recognized voice in the tech community.\"})]}),showBackToTop&&/*#__PURE__*/_jsx(motion.button,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"fixed\",bottom:\"2rem\",right:\"2rem\",padding:\"0.75rem 1.5rem\",backgroundColor:\"#0070f3\",color:\"#ffffff\",border:\"none\",borderRadius:\"4px\",cursor:\"pointer\",zIndex:1e3},onClick:()=>window.scrollTo({top:0,behavior:\"smooth\"}),children:\"Back to Top\"})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"ContributorPage\":{\"type\":\"reactComponent\",\"name\":\"ContributorPage\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Test_contribute.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{ContributorPage}from\"#framer/local/codeFile/OqN3wrp/Test_contribute.js\";import*as sharedStyle from\"#framer/local/css/qggoWKe3B/qggoWKe3B.js\";import metadataProvider from\"#framer/local/webPageMetadata/AK5NWHF6h/AK5NWHF6h.js\";const ContributorPageFonts=getFonts(ContributorPage);const breakpoints={GBOdTaTBH:\"(min-width: 1512px)\",on2s2ALwO:\"(min-width: 1200px) and (max-width: 1511px)\",pYchrRAnh:\"(min-width: 810px) and (max-width: 1199px)\",SnrjQiTLx:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Gzczc\";const variantClassNames={GBOdTaTBH:\"framer-v-1jdggcw\",on2s2ALwO:\"framer-v-1ubbtnu\",pYchrRAnh:\"framer-v-m31lrb\",SnrjQiTLx:\"framer-v-1nlej0n\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Larger Desktop\":\"GBOdTaTBH\",Desktop:\"on2s2ALwO\",Phone:\"SnrjQiTLx\",Tablet:\"pYchrRAnh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"on2s2ALwO\"};};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=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"pYchrRAnh\",\"SnrjQiTLx\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"on2s2ALwO\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4d5ca1f1-08fb-44e5-bc56-2853073b66a3, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ubbtnu\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gm8fw7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d1tht2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p2o5mh\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-176idef\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SnrjQiTLx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1y8rd3s\",\"data-styles-preset\":\"qggoWKe3B\",style:{\"--framer-text-color\":\"var(--token-83bc2669-3de0-4c09-ac25-eaffe4d58afb, rgb(0, 0, 0))\"},children:\"Contribute to the Website!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1y8rd3s\",\"data-styles-preset\":\"qggoWKe3B\",style:{\"--framer-text-color\":\"var(--token-83bc2669-3de0-4c09-ac25-eaffe4d58afb, rgb(0, 0, 0))\"},children:\"Contribute to Radiancefields.com!\"})}),className:\"framer-1v5asjy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-83bc2669-3de0-4c09-ac25-eaffe4d58afb, rgb(0, 0, 0))\"},children:\"Make your voice heard.\"})}),className:\"framer-rc0791\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-8mfksi hidden-m31lrb hidden-1nlej0n\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+-.49999999999991473),pixelHeight:2e3,pixelWidth:2e3,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,src:\"https://framerusercontent.com/images/QlhdskdUKi1zP41BhAWvZRsMqE.svg\",srcSet:\"https://framerusercontent.com/images/QlhdskdUKi1zP41BhAWvZRsMqE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/QlhdskdUKi1zP41BhAWvZRsMqE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QlhdskdUKi1zP41BhAWvZRsMqE.svg 2000w\"},className:\"framer-1956g70\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7bkndv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s9s7pe-container\",isAuthoredByUser:true,nodeId:\"U_nBhNMqG\",scopeId:\"AK5NWHF6h\",children:/*#__PURE__*/_jsx(ContributorPage,{height:\"100%\",id:\"U_nBhNMqG\",layoutId:\"U_nBhNMqG\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Gzczc.framer-15z6qnv, .framer-Gzczc .framer-15z6qnv { display: block; }\",\".framer-Gzczc.framer-1ubbtnu { align-content: center; align-items: center; background-color: var(--token-4d5ca1f1-08fb-44e5-bc56-2853073b66a3, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1080px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Gzczc .framer-gm8fw7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Gzczc .framer-d1tht2 { 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-Gzczc .framer-1p2o5mh { align-content: center; align-items: center; background-color: var(--token-4d5ca1f1-08fb-44e5-bc56-2853073b66a3, #ffffff); 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: 50%; }\",\".framer-Gzczc .framer-176idef { align-content: center; align-items: center; background-color: var(--token-4d5ca1f1-08fb-44e5-bc56-2853073b66a3, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 75%; }\",\".framer-Gzczc .framer-1v5asjy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Gzczc .framer-rc0791 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Gzczc .framer-8mfksi { flex: none; height: 413px; overflow: hidden; position: relative; width: 50%; }\",\".framer-Gzczc .framer-1956g70 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(49.87893462469736% - 100% / 2); width: 100%; }\",\".framer-Gzczc .framer-7bkndv { align-content: center; align-items: center; background-color: var(--token-4d5ca1f1-08fb-44e5-bc56-2853073b66a3, #ffffff); 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-Gzczc .framer-1s9s7pe-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Gzczc.framer-1ubbtnu, .framer-Gzczc .framer-gm8fw7, .framer-Gzczc .framer-d1tht2, .framer-Gzczc .framer-1p2o5mh, .framer-Gzczc .framer-176idef, .framer-Gzczc .framer-7bkndv { gap: 0px; } .framer-Gzczc.framer-1ubbtnu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Gzczc.framer-1ubbtnu > :first-child, .framer-Gzczc .framer-gm8fw7 > :first-child, .framer-Gzczc .framer-176idef > :first-child { margin-top: 0px; } .framer-Gzczc.framer-1ubbtnu > :last-child, .framer-Gzczc .framer-gm8fw7 > :last-child, .framer-Gzczc .framer-176idef > :last-child { margin-bottom: 0px; } .framer-Gzczc .framer-gm8fw7 > *, .framer-Gzczc .framer-176idef > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Gzczc .framer-d1tht2 > *, .framer-Gzczc .framer-1p2o5mh > *, .framer-Gzczc .framer-7bkndv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Gzczc .framer-d1tht2 > :first-child, .framer-Gzczc .framer-1p2o5mh > :first-child, .framer-Gzczc .framer-7bkndv > :first-child { margin-left: 0px; } .framer-Gzczc .framer-d1tht2 > :last-child, .framer-Gzczc .framer-1p2o5mh > :last-child, .framer-Gzczc .framer-7bkndv > :last-child { margin-right: 0px; } }\",...sharedStyle.css,\"@media (min-width: 1512px) { .framer-Gzczc.framer-1ubbtnu { width: 1512px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Gzczc.framer-1ubbtnu { width: 810px; } .framer-Gzczc .framer-1p2o5mh { width: 100%; } .framer-Gzczc .framer-176idef { width: min-content; } .framer-Gzczc .framer-1v5asjy { white-space: pre; width: auto; } .framer-Gzczc .framer-rc0791 { width: 608px; }}\",\"@media (max-width: 809px) { .framer-Gzczc.framer-1ubbtnu { width: 390px; } .framer-Gzczc .framer-1p2o5mh, .framer-Gzczc .framer-1v5asjy { width: 95%; } .framer-Gzczc .framer-176idef { align-content: flex-start; align-items: flex-start; width: 100%; } .framer-Gzczc .framer-rc0791 { width: 75%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4040\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"GBOdTaTBH\":{\"layout\":[\"fixed\",\"fixed\"]},\"pYchrRAnh\":{\"layout\":[\"fixed\",\"fixed\"]},\"SnrjQiTLx\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerAK5NWHF6h=withCSS(Component,css,\"framer-Gzczc\");export default FramerAK5NWHF6h;FramerAK5NWHF6h.displayName=\"Raymarch 2\";FramerAK5NWHF6h.defaultProps={height:4040,width:1200};addFonts(FramerAK5NWHF6h,[{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\"}]},...ContributorPageFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAK5NWHF6h\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GBOdTaTBH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pYchrRAnh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SnrjQiTLx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"4040\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useWindowWidth", "width", "setWidth", "ye", "ue", "window", "handleResize", "usePrefersDarkMode", "darkMode", "setDarkMode", "mq", "handleChange", "e", "getStyles", "ContributorPage", "activeSection", "setActiveSection", "scrollY", "useViewportScroll", "showBackToTop", "setShowBackToTop", "unsubscribe", "latest", "sections", "handleScroll", "section", "element", "rect", "scrollToSection", "id", "el", "fadeIn", "slideIn", "fadeUp", "delay", "styles", "u", "motion", "p", "ContributorPageFonts", "getFonts", "ContributorPage", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "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", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "x", "RichText2", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "css", "FramerAK5NWHF6h", "withCSS", "AK5NWHF6h_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
