{
  "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/P5G6yMydFRnxCeF1fcVE/7fMHznYsw6xS6PY7zVeZ/Hypno.js", "ssg:https://framerusercontent.com/modules/k5j5vEn5JaRbyTX2sGzG/JZwTUdTZVjCV54YFYfYZ/cIIoLpBHH.js", "ssg:https://framerusercontent.com/modules/Vt0R2ZCIuXZc6bsr0IG6/sPrFUraaoCkLsW7ZbyZL/IX4cazMAy.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:-360},transition:{repeat:Infinity,duration:7,ease:\"linear\"}});};}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=./Hypno.map", "// Generated by Framer (a4dc481)\nimport { jsx as _jsx } from \"react/jsx-runtime\";import { addFonts, cx, Image, useVariantState, withCSS } from \"framer\";import { LayoutGroup, motion } from \"framer-motion\";import * as React from \"react\";import { withRotate } from \"https://framerusercontent.com/modules/P5G6yMydFRnxCeF1fcVE/7fMHznYsw6xS6PY7zVeZ/Hypno.js\";const ImageWithRotate = withRotate(Image);const cycleOrder = [\"vhDTGY4ru\"];const variantClassNames = { vhDTGY4ru: \"framer-v-1t4sqxe\" };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 humanReadableVariantMap = {};const transitions = { default: { damping: 60, delay: 0, duration: .3, ease: [.44, 0, .56, 1], mass: 1, stiffness: 500, type: \"spring\" } };const Component = /*#__PURE__*/React.forwardRef(function ({ id, style, className, width, height, layoutId, variant: outerVariant = \"vhDTGY4ru\", ...restProps }, ref) {const outerVariantId = humanReadableVariantMap[outerVariant];const variant = outerVariantId || outerVariant;const { baseVariant, classNames, gestureVariant, setGestureState, setVariant, transition, variants } = useVariantState({ cycleOrder, defaultVariant: \"vhDTGY4ru\", transitions, variant, variantClassNames });const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;const defaultLayoutId = React.useId();return /*#__PURE__*/_jsx(LayoutGroup, { id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId, children: /*#__PURE__*/_jsx(motion.div, { initial: variant, animate: variants, onHoverStart: () => setGestureState({ isHovered: true }), onHoverEnd: () => setGestureState({ isHovered: false }), onTapStart: () => setGestureState({ isPressed: true }), onTap: () => setGestureState({ isPressed: false }), onTapCancel: () => setGestureState({ isPressed: false }), className: cx(\"framer-xfEBM\", classNames), style: { display: \"contents\" }, children: /*#__PURE__*/_jsx(motion.div, { ...restProps, className: cx(\"framer-1t4sqxe\", className), \"data-framer-name\": \"Variant 1\", layoutDependency: layoutDependency, layoutId: \"vhDTGY4ru\", ref: ref, style: { borderBottomLeftRadius: 1e4, borderBottomRightRadius: 1e4, borderTopLeftRadius: 1e4, borderTopRightRadius: 1e4, ...style }, transition: transition, children: /*#__PURE__*/_jsx(ImageWithRotate, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 1080, intrinsicWidth: 1080, pixelHeight: 2160, pixelWidth: 2160, src: new URL(\"https://framerusercontent.com/images/NQMBiGxapCF03PQyjvExFlhG1Y.png?scale-down-to=2048\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/NQMBiGxapCF03PQyjvExFlhG1Y.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/NQMBiGxapCF03PQyjvExFlhG1Y.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/NQMBiGxapCF03PQyjvExFlhG1Y.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/NQMBiGxapCF03PQyjvExFlhG1Y.png\").href} 2160w` }, className: \"framer-1dpb4jd\", \"data-framer-name\": \"record_thumb\", layoutDependency: layoutDependency, layoutId: \"vEVC8Mz4A\", transition: transition }) }) }) });});const css = ['.framer-xfEBM [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-xfEBM * { box-sizing: border-box; }\", \".framer-xfEBM .framer-1fula2p { display: block; }\", \".framer-xfEBM .framer-1t4sqxe { height: 200px; overflow: hidden; position: relative; width: 200px; will-change: transform; }\", \".framer-xfEBM .framer-1dpb4jd { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\"]; /**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 200\n* @framerIntrinsicWidth 200\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n*/const FramercIIoLpBHH = withCSS(Component, css, \"framer-xfEBM\");export default FramercIIoLpBHH;FramercIIoLpBHH.displayName = \"Hypno\";FramercIIoLpBHH.defaultProps = { height: 200, width: 200 };addFonts(FramercIIoLpBHH, []);\nexport const __FramerMetadata__ = { \"exports\": { \"default\": { \"type\": \"reactComponent\", \"name\": \"FramercIIoLpBHH\", \"slots\": [], \"annotations\": { \"framerIntrinsicHeight\": \"200\", \"framerIntrinsicWidth\": \"200\", \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\", \"framerContractVersion\": \"1\" } }, \"Props\": { \"type\": \"tsType\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"__FramerMetadata__\": { \"type\": \"variable\" } } };\n//# sourceMappingURL=./cIIoLpBHH.map", "// Generated by Framer (f1edf09)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";import { addFonts, addPropertyControls, ControlType, cx, getFonts, Image, Link, RichText, useVariantState, withCSS } from \"framer\";import { LayoutGroup, motion } from \"framer-motion\";import * as React from \"react\";import { Video } from \"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/534oB9Tn5cZB6VZbkWLJ/Video.js\";import Particles from \"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import * as sharedStyle from \"https://framerusercontent.com/modules/euWMG9PgLxDXyWMXUQfz/w89qZ3wGz1URQpncjZIx/BVknK4Rm_.js\";import Hypno from \"https://framerusercontent.com/modules/k5j5vEn5JaRbyTX2sGzG/JZwTUdTZVjCV54YFYfYZ/cIIoLpBHH.js\";const HypnoFonts = getFonts(Hypno);const VideoFonts = getFonts(Video);const ParticlesFonts = getFonts(Particles);const cycleOrder = [\"mhoGtuZXz\", \"soFGobt32\", \"voQg2uMdq\", \"MXNQSsRUG\", \"oElSK1c8h\", \"BVgk3hRuU\"];const variantClassNames = { BVgk3hRuU: \"framer-v-1s3udvc\", mhoGtuZXz: \"framer-v-f5vy2c\", MXNQSsRUG: \"framer-v-3nzelq\", oElSK1c8h: \"framer-v-1li7raw\", soFGobt32: \"framer-v-1ta9eh1\", voQg2uMdq: \"framer-v-uqjgzn\" };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 humanReadableVariantMap = { \"Contained Image\": \"mhoGtuZXz\", \"Dog and Cat\": \"voQg2uMdq\", \"Full Bleed Image\": \"soFGobt32\", \"Heidi's Bridge\": \"BVgk3hRuU\", \"Human Record Player\": \"MXNQSsRUG\", Stationhead: \"oElSK1c8h\" };const transitions = { default: { damping: 60, delay: 0, duration: .3, ease: [.44, 0, .56, 1], mass: 1, stiffness: 500, type: \"spring\" } };const toResponsiveImage = (value) => {if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {return value;}return typeof value === \"string\" ? { src: value } : undefined;};const transformTemplate = (_, t) => `perspective(1200px) ${t}`;const Component = /*#__PURE__*/React.forwardRef(function ({ id, style, className, width, height, layoutId, variant: outerVariant = \"mhoGtuZXz\", title: bq1jOMVDs = \"Project Name\", image: e_QcSssgY = { src: new URL(\"https://framerusercontent.com/images/MW91fLzWopAfxixCavO86wY8A8.png?scale-down-to=2048\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/MW91fLzWopAfxixCavO86wY8A8.png?scale-down-to=512\").href} 500w, ${new URL(\"https://framerusercontent.com/images/MW91fLzWopAfxixCavO86wY8A8.png?scale-down-to=1024\").href} 1000w, ${new URL(\"https://framerusercontent.com/images/MW91fLzWopAfxixCavO86wY8A8.png?scale-down-to=2048\").href} 2001w, ${new URL(\"https://framerusercontent.com/images/MW91fLzWopAfxixCavO86wY8A8.png\").href} 2261w` }, background: Zvhz7lxUd = \"rgb(255, 92, 138)\", link: SWB7lZJdU, textColor: wQBzyji3K = \"rgb(0, 0, 0)\", ...restProps }, ref) {const outerVariantId = humanReadableVariantMap[outerVariant];const variant = outerVariantId || outerVariant;const { baseVariant, classNames, gestureVariant, setGestureState, setVariant, transition, variants } = useVariantState({ cycleOrder, defaultVariant: \"mhoGtuZXz\", transitions, variant, variantClassNames });const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;const isDisplayed = () => {if (baseVariant === \"MXNQSsRUG\") return true;return false;};const isDisplayed1 = () => {if (baseVariant === \"BVgk3hRuU\") return true;return false;};const isDisplayed2 = () => {if ([\"voQg2uMdq\", \"MXNQSsRUG\"].includes(baseVariant)) return false;return true;};const isDisplayed3 = () => {if (baseVariant === \"oElSK1c8h\") return true;return false;};const isDisplayed4 = () => {if (baseVariant === \"voQg2uMdq\") return true;return false;};const defaultLayoutId = React.useId();return /*#__PURE__*/_jsx(LayoutGroup, { id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId, children: /*#__PURE__*/_jsx(motion.div, { initial: variant, animate: variants, onHoverStart: () => setGestureState({ isHovered: true }), onHoverEnd: () => setGestureState({ isHovered: false }), onTapStart: () => setGestureState({ isPressed: true }), onTap: () => setGestureState({ isPressed: false }), onTapCancel: () => setGestureState({ isPressed: false }), className: cx(\"framer-svaNJ\", sharedStyle.className, classNames), style: { display: \"contents\" }, children: /*#__PURE__*/_jsx(motion.div, { ...restProps, className: cx(\"framer-f5vy2c\", className), \"data-framer-name\": \"Contained Image\", layoutDependency: layoutDependency, layoutId: \"mhoGtuZXz\", ref: ref, style: { ...style }, transition: transition, ...addPropertyOverrides({ BVgk3hRuU: { \"data-framer-name\": \"Heidi's Bridge\" }, MXNQSsRUG: { \"data-framer-name\": \"Human Record Player\" }, oElSK1c8h: { \"data-framer-name\": \"Stationhead\" }, soFGobt32: { \"data-framer-name\": \"Full Bleed Image\" }, voQg2uMdq: { \"data-framer-name\": \"Dog and Cat\" } }, baseVariant, gestureVariant), children: /*#__PURE__*/_jsx(Link, { href: SWB7lZJdU, smoothScroll: true, children: /*#__PURE__*/_jsxs(motion.a, { className: \"framer-g9sd1w framer-1d2lj3z\", layoutDependency: layoutDependency, layoutId: \"JUYeafe23\", style: { backgroundColor: Zvhz7lxUd, borderBottomLeftRadius: 24, borderBottomRightRadius: 24, borderTopLeftRadius: 24, borderTopRightRadius: 24 }, transition: transition, variants: { MXNQSsRUG: { backgroundColor: \"rgb(253, 251, 228)\" } }, children: [isDisplayed() && /*#__PURE__*/_jsx(motion.div, { className: \"framer-1rngveh\", layoutDependency: layoutDependency, layoutId: \"BwOk825qG\", transition: transition, children: isDisplayed() && /*#__PURE__*/_jsx(motion.div, { className: \"framer-1k0vq91-container\", layoutDependency: layoutDependency, layoutId: \"Dju3Xo_4j-container\", transition: transition, children: /*#__PURE__*/_jsx(Hypno, { height: \"100%\", id: \"Dju3Xo_4j\", layoutId: \"Dju3Xo_4j\", style: { height: \"100%\", width: \"100%\" }, width: \"100%\" }) }) }), isDisplayed1() && /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 500, intrinsicWidth: 400, pixelHeight: 1e3, pixelWidth: 800, src: new URL(\"https://framerusercontent.com/images/LIUd1ZBWCINQ12Cl03Jr6dPt7mY.gif?scale-down-to=512\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/LIUd1ZBWCINQ12Cl03Jr6dPt7mY.gif?scale-down-to=512\").href} 409w, ${new URL(\"https://framerusercontent.com/images/LIUd1ZBWCINQ12Cl03Jr6dPt7mY.gif\").href} 800w` }, className: \"framer-igd7bu\", \"data-framer-name\": \"$629e1d21042b4e3e1f704013_200129_Kin_Social_GIF_2_4x5\", layoutDependency: layoutDependency, layoutId: \"Fc4__9Pmc\", style: { borderBottomLeftRadius: 24, borderBottomRightRadius: 24, borderTopLeftRadius: 24, borderTopRightRadius: 24 }, transition: transition }), isDisplayed2() && /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fit\", intrinsicHeight: 2314, intrinsicWidth: 2261, pixelHeight: 2314, pixelWidth: 2261, ...toResponsiveImage(e_QcSssgY) }, className: \"framer-806wdh\", \"data-framer-name\": \"Image\", layoutDependency: layoutDependency, layoutId: \"X3MDGSHft\", transition: transition, ...addPropertyOverrides({ BVgk3hRuU: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 2880, intrinsicWidth: 2880, pixelHeight: 2880, pixelWidth: 2880, src: new URL(\"https://framerusercontent.com/images/dMxuhZx0qwYnW6YUEj9rOTNcfgQ.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/dMxuhZx0qwYnW6YUEj9rOTNcfgQ.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/dMxuhZx0qwYnW6YUEj9rOTNcfgQ.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/dMxuhZx0qwYnW6YUEj9rOTNcfgQ.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/dMxuhZx0qwYnW6YUEj9rOTNcfgQ.png\").href} 2880w` } }, oElSK1c8h: { background: { alt: \"\", fit: \"fit\", intrinsicHeight: 1146, intrinsicWidth: 2830, pixelHeight: 1146, pixelWidth: 2830, src: new URL(\"https://framerusercontent.com/images/1jYGabJt5xcuafYluaPp0gKMU.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/1jYGabJt5xcuafYluaPp0gKMU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/1jYGabJt5xcuafYluaPp0gKMU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/1jYGabJt5xcuafYluaPp0gKMU.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/1jYGabJt5xcuafYluaPp0gKMU.png\").href} 2830w` } }, soFGobt32: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 2314, intrinsicWidth: 2261, pixelHeight: 2314, pixelWidth: 2261, ...toResponsiveImage(e_QcSssgY) } } }, baseVariant, gestureVariant) }), isDisplayed3() && /*#__PURE__*/_jsx(motion.div, { className: \"framer-119fqqj-container\", layoutDependency: layoutDependency, layoutId: \"I7tx9EGXA-container\", transition: transition, children: /*#__PURE__*/_jsx(Video, { backgroundColor: \"rgba(0, 0, 0, 0)\", borderRadius: 0, bottomLeftRadius: 0, bottomRightRadius: 0, canvasPlay: false, controls: false, height: \"100%\", id: \"I7tx9EGXA\", isMixedBorderRadius: false, layoutId: \"I7tx9EGXA\", loop: true, muted: true, objectFit: \"cover\", playing: true, posterEnabled: false, srcFile: new URL(\"https://framerusercontent.com/modules/assets/hAnN6uvgkIpSTb4vBlc9W6Dmcbk~fbH0T620Rfy54Ok0ujzMe-3JMj0L_KZKKoQgj9uXczE.mp4\").href, srcType: \"Upload\", srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\", startTime: 0, style: { height: \"100%\", width: \"100%\" }, topLeftRadius: 0, topRightRadius: 0, volume: 25, width: \"100%\" }) }), isDisplayed4() && /*#__PURE__*/_jsx(motion.div, { __perspectiveFX: false, __targetOpacity: 1, className: \"framer-1v02ayu-container\", \"data-framer-name\": \"Dog Particles\", layoutDependency: layoutDependency, layoutId: \"sjKkDk5vo-container\", name: \"Dog Particles\", transformTemplate: transformTemplate, transition: transition, children: /*#__PURE__*/_jsx(Particles, { background: \"rgb(255, 255, 255)\", clickOptions: { clickEnabled: false, clickModes: \"repulse\" }, color: \"rgb(0, 0, 0)\", colors: [\"hsl(204, 90%, 52%)\", \"hsl(122, 80%, 48%)\"], densityOptions: { densityEnable: true, densityArea: 8356, densityFactor: 11 }, fpsOptions: 60, height: \"100%\", hoverOptions: { hoverEnabled: false, hoverModes: \"bubble\", hoverParallax: true, hoverForce: 10, hoverSmooth: 10 }, id: \"sjKkDk5vo\", layoutId: \"sjKkDk5vo\", linksOptions: { linksEnabled: false, linksColor: \"rgb(255, 0, 0)\", linksOpacity: 1, linksDistance: 64, linksWidth: 1 }, modeOptions: { connectDistance: 100, connectRadius: 50, connectLinksOpacity: .2, grabDistance: 100, grabLinksOpacity: .2, bubbleDistance: 210, bubbleSize: 382, bubbleDuration: .6, repulseDistance: 200, repulseDuration: 1.2, pushQuantity: 1, removeQuantity: 4, trailQuantity: 10, trailDelay: .1 }, moveOptions: { moveEnabled: true, moveDirection: \"top\", moveSpeed: 4, moveRandom: false, moveStraight: false, moveOut: \"out\", moveVibrate: false, moveGravityEnabled: false, moveGravityAcceleration: 1, moveGravityMaxSpeed: 1, moveTrailEnabled: false, moveTrailAmount: 25, moveSpinEnabled: false, moveSpinAcceleration: 10, moveAttractEnabled: false, moveAttractDistance: 100 }, name: \"Dog Particles\", number: 1, opacityOptions: { opacity: 1, opacityMax: 1, opacityMin: 0, opacityType: true }, particlesID: \"One\", radius: 0, rotateOptions: { rotateValue: 1, rotateDirection: \"random\", rotateAnimation: true, rotateSpeed: 1, rotateSync: true }, shapeOptions: { shapeType: \"image\", characterType: \"\uD83C\uDF51\", imageSource: new URL(\"https://framerusercontent.com/images/EmOjfPFgv8oxwAmtA4GjCElIro.png\").href, imageWidth: 80, imageHeight: 80 }, sizeOptions: { sizeType: false, size: 10, sizeMin: 160, sizeMax: 240 }, style: { height: \"100%\", width: \"100%\" }, width: \"100%\" }) }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-1tq38v3\", layoutDependency: layoutDependency, layoutId: \"G8VNFY2Ij\", transition: transition, children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.h2, { className: \"framer-styles-preset-1w8ea9a\", \"data-styles-preset\": \"BVknK4Rm_\", style: { \"--framer-text-color\": \"var(--extracted-1of0zx5)\" }, children: \"Project Name\" }) }), className: \"framer-p63hao\", layoutDependency: layoutDependency, layoutId: \"ln5IxODEa\", style: { \"--extracted-1of0zx5\": \"var(--variable-reference-wQBzyji3K-IX4cazMAy)\", \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\", \"--variable-reference-wQBzyji3K-IX4cazMAy\": wQBzyji3K }, text: bq1jOMVDs, transition: transition, verticalAlignment: \"top\", withExternalLayout: true }) })] }) }) }) }) });});const css = ['.framer-svaNJ [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-svaNJ * { box-sizing: border-box; }\", \".framer-svaNJ .framer-1d2lj3z { display: block; }\", \".framer-svaNJ .framer-f5vy2c { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-svaNJ .framer-g9sd1w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 20px 20px 20px 20px; position: relative; text-decoration: none; width: 1px; will-change: transform; }\", \".framer-svaNJ .framer-1rngveh { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: var(--framer-aspect-ratio-supported, 200px); }\", \".framer-svaNJ .framer-1k0vq91-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\", \".framer-svaNJ .framer-igd7bu { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\", \".framer-svaNJ .framer-806wdh { flex: 1 0 0px; height: 100%; max-height: 90%; max-width: 100%; overflow: hidden; position: relative; width: 1px; }\", \".framer-svaNJ .framer-119fqqj-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\", \".framer-svaNJ .framer-jkv9w0-container, .framer-svaNJ .framer-1v02ayu-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\", \".framer-svaNJ .framer-1tq38v3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; left: 0px; overflow: hidden; padding: 20px 20px 20px 20px; position: absolute; top: 0px; width: 100%; }\", \".framer-svaNJ .framer-p63hao { 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-svaNJ .framer-f5vy2c, .framer-svaNJ .framer-g9sd1w, .framer-svaNJ .framer-1rngveh, .framer-svaNJ .framer-1tq38v3 { gap: 0px; } .framer-svaNJ .framer-f5vy2c > *, .framer-svaNJ .framer-g9sd1w > *, .framer-svaNJ .framer-1tq38v3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-svaNJ .framer-f5vy2c > :first-child, .framer-svaNJ .framer-g9sd1w > :first-child, .framer-svaNJ .framer-1rngveh > :first-child, .framer-svaNJ .framer-1tq38v3 > :first-child { margin-left: 0px; } .framer-svaNJ .framer-f5vy2c > :last-child, .framer-svaNJ .framer-g9sd1w > :last-child, .framer-svaNJ .framer-1rngveh > :last-child, .framer-svaNJ .framer-1tq38v3 > :last-child { margin-right: 0px; } .framer-svaNJ .framer-1rngveh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\", \".framer-svaNJ.framer-v-1ta9eh1 .framer-g9sd1w, .framer-svaNJ.framer-v-1s3udvc .framer-g9sd1w { padding: 0px 0px 0px 0px; }\", \".framer-svaNJ.framer-v-1ta9eh1 .framer-806wdh { max-height: 100%; }\", \".framer-svaNJ.framer-v-uqjgzn .framer-1v02ayu-container { order: 4; }\", \".framer-svaNJ.framer-v-uqjgzn .framer-1tq38v3 { order: 0; z-index: 2; }\", \".framer-svaNJ.framer-v-3nzelq .framer-g9sd1w { padding: 30px 30px 30px 30px; }\", \".framer-svaNJ.framer-v-3nzelq .framer-1rngveh { width: var(--framer-aspect-ratio-supported, 740px); }\", \".framer-svaNJ.framer-v-3nzelq .framer-1k0vq91-container { height: var(--framer-aspect-ratio-supported, 740px); }\", \".framer-svaNJ.framer-v-3nzelq .framer-1tq38v3 { height: 800px; }\", \".framer-svaNJ.framer-v-1li7raw .framer-806wdh { max-height: 100%; max-width: 80%; z-index: 2; }\", \".framer-svaNJ.framer-v-1li7raw .framer-1tq38v3 { z-index: 1; }\", \".framer-svaNJ.framer-v-1s3udvc .framer-806wdh { flex: none; left: 0px; max-height: unset; max-width: unset; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 2; }\", \".framer-svaNJ.framer-v-1s3udvc .framer-1tq38v3 { z-index: 3; }\", ...sharedStyle.css]; /**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 800\n* @framerIntrinsicWidth 1200\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"soFGobt32\":{\"layout\":[\"fixed\",\"fixed\"]},\"voQg2uMdq\":{\"layout\":[\"fixed\",\"fixed\"]},\"MXNQSsRUG\":{\"layout\":[\"fixed\",\"fixed\"]},\"oElSK1c8h\":{\"layout\":[\"fixed\",\"fixed\"]},\"BVgk3hRuU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n* @framerVariables {\"bq1jOMVDs\":\"title\",\"e_QcSssgY\":\"image\",\"Zvhz7lxUd\":\"background\",\"SWB7lZJdU\":\"link\",\"wQBzyji3K\":\"textColor\"}\n*/const FramerIX4cazMAy = withCSS(Component, css, \"framer-svaNJ\");export default FramerIX4cazMAy;FramerIX4cazMAy.displayName = \"Homepage Project Card\";FramerIX4cazMAy.defaultProps = { height: 800, width: 1200 };addPropertyControls(FramerIX4cazMAy, { variant: { options: [\"mhoGtuZXz\", \"soFGobt32\", \"voQg2uMdq\", \"MXNQSsRUG\", \"oElSK1c8h\", \"BVgk3hRuU\"], optionTitles: [\"Contained Image\", \"Full Bleed Image\", \"Dog and Cat\", \"Human Record Player\", \"Stationhead\", \"Heidi's Bridge\"], title: \"Variant\", type: ControlType.Enum }, bq1jOMVDs: { defaultValue: \"Project Name\", displayTextArea: false, title: \"Title\", type: ControlType.String }, e_QcSssgY: { __defaultAssetReference: \"data:framer/asset-reference,MW91fLzWopAfxixCavO86wY8A8.png?originalFilename=Stationhead+Thumbnail.png&preferredSize=auto\", title: \"Image\", type: ControlType.ResponsiveImage }, Zvhz7lxUd: { defaultValue: \"rgb(255, 92, 138)\", title: \"Background\", type: ControlType.Color }, SWB7lZJdU: { title: \"Link\", type: ControlType.Link }, wQBzyji3K: { defaultValue: \"rgb(0, 0, 0)\", title: \"Text Color\", type: ControlType.Color } });addFonts(FramerIX4cazMAy, [...HypnoFonts, ...VideoFonts, ...ParticlesFonts, ...sharedStyle.fonts]);\nexport const __FramerMetadata__ = { \"exports\": { \"Props\": { \"type\": \"tsType\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"default\": { \"type\": \"reactComponent\", \"name\": \"FramerIX4cazMAy\", \"slots\": [], \"annotations\": { \"framerIntrinsicWidth\": \"1200\", \"framerContractVersion\": \"1\", \"framerVariables\": \"{\\\"bq1jOMVDs\\\":\\\"title\\\",\\\"e_QcSssgY\\\":\\\"image\\\",\\\"Zvhz7lxUd\\\":\\\"background\\\",\\\"SWB7lZJdU\\\":\\\"link\\\",\\\"wQBzyji3K\\\":\\\"textColor\\\"}\", \"framerIntrinsicHeight\": \"800\", \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"soFGobt32\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"voQg2uMdq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MXNQSsRUG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oElSK1c8h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BVgk3hRuU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\" } }, \"__FramerMetadata__\": { \"type\": \"variable\" } } };\n//# sourceMappingURL=./IX4cazMAy.map"],
  "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", "withRotate", "Component", "props", "p", "ImageWithRotate", "withRotate", "Image2", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "ImageWithRotate", "css", "FramercIIoLpBHH", "withCSS", "cIIoLpBHH_default", "addFonts", "HypnoFonts", "getFonts", "cIIoLpBHH_default", "VideoFonts", "Video", "ParticlesFonts", "ParticleWrapper", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "transformTemplate", "_", "t", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "bq1jOMVDs", "e_QcSssgY", "Zvhz7lxUd", "SWB7lZJdU", "wQBzyji3K", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Link", "u", "Image2", "RichText", "x", "css", "FramerIX4cazMAy", "withCSS", "IX4cazMAy_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
