{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/89vTTZ64eGc5W6dEgQEU/zdUBbSDrbwZHXALTe633/zIGO0XWxe.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useEffect, useRef, useState } from \"react\";\nimport { addPropertyControls, ControlType } from \"framer\";\nimport { useIsOnCanvas, emptyStateStyle, containerStyles } from \"https://framer.com/m/framer/default-utils.js\"; /**\n                                                                                                                * @framerIntrinsicWidth 600\n                                                                                                                * @framerIntrinsicHeight 400\n                                                                                                                *\n                                                                                                                * @framerSupportedLayoutWidth fixed\n                                                                                                                * @framerSupportedLayoutHeight fixed\n                                                                                                                *\n                                                                                                                * @framerDisableUnlink\n                                                                                                                */\nexport default function Embed({\n  type,\n  url,\n  html\n}) {\n  if (type === \"url\" && url) {\n    return /*#__PURE__*/_jsx(EmbedURL, {\n      url: url\n    });\n  }\n  if (type === \"html\" && html) {\n    return /*#__PURE__*/_jsx(EmbedHTML, {\n      html: html\n    });\n  }\n  return /*#__PURE__*/_jsx(Instructions, {});\n}\n;\naddPropertyControls(Embed, {\n  type: {\n    type: ControlType.Enum,\n    defaultValue: \"url\",\n    displaySegmentedControl: true,\n    options: [\"url\", \"html\"],\n    optionTitles: [\"URL\", \"HTML\"]\n  },\n  url: {\n    title: \"URL\",\n    type: ControlType.String,\n    description: \"Some websites don\u2019t support embedding.\",\n    hidden(props) {\n      return props.type !== \"url\";\n    }\n  },\n  html: {\n    title: \"HTML\",\n    displayTextArea: true,\n    type: ControlType.String,\n    hidden(props) {\n      return props.type !== \"html\";\n    }\n  }\n});\nfunction Instructions() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    style: {\n      ...emptyStateStyle,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"To embed a website or widget, add it to the properties\\xa0panel.\"\n    })\n  });\n}\nfunction EmbedURL({\n  url\n}) {\n  // Add https:// if the URL does not have a protocol.\n  if (!/[a-z]+:\\/\\//.test(url)) {\n    url = \"https://\" + url;\n  }\n  const onCanvas = useIsOnCanvas(); // We need to check if the url is blocked inside an iframe by the X-Frame-Options\n  // or Content-Security-Policy headers on the backend.\n  const [state, setState] = useState(onCanvas ? undefined : false);\n  useEffect(() => {\n    // We only want to check on the canvas.\n    // On the website we want to avoid the additional delay.\n    if (!onCanvas) return; // TODO: We could also use AbortController here.\n    let isLastEffect = true;\n    setState(undefined);\n    async function load() {\n      const response = await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\" + encodeURIComponent(url));\n      if (response.status == 200) {\n        const {\n          isBlocked\n        } = await response.json();\n        if (isLastEffect) {\n          setState(isBlocked);\n        }\n      } else {\n        const message = await response.text();\n        console.error(message);\n        const error = new Error(\"This site can\u2019t be reached.\");\n        setState(error);\n      }\n    }\n    load().catch(error => {\n      console.error(error);\n      setState(error);\n    });\n    return () => {\n      isLastEffect = false;\n    };\n  }, [url]);\n  if (!url.startsWith(\"https://\")) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: \"Unsupported protocol.\"\n    });\n  }\n  if (state === undefined) {\n    return /*#__PURE__*/_jsx(LoadingIndicator, {});\n  }\n  if (state instanceof Error) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: state.message\n    });\n  }\n  if (state === true) {\n    const message = `Can't embed ${url} due to its content security policy.`;\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: message\n    });\n  }\n  return /*#__PURE__*/_jsx(\"iframe\", {\n    src: url,\n    style: iframeStyle,\n    loading: \"lazy\",\n    // @ts-ignore\n    fetchPriority: onCanvas ? \"low\" : \"auto\",\n    referrerPolicy: \"no-referrer\",\n    sandbox: getSandbox(onCanvas)\n  });\n}\nconst iframeStyle = {\n  width: \"100%\",\n  height: \"100%\",\n  border: \"none\"\n};\nfunction getSandbox(onCanvas) {\n  const result = [\"allow-same-origin\", \"allow-scripts\"];\n  if (!onCanvas) {\n    result.push(\"allow-downloads\", \"allow-forms\", \"allow-modals\", \"allow-orientation-lock\", \"allow-pointer-lock\", \"allow-popups\", \"allow-popups-to-escape-sandbox\", \"allow-presentation\", \"allow-storage-access-by-user-activation\", \"allow-top-navigation-by-user-activation\");\n  }\n  return result.join(\" \");\n}\nfunction EmbedHTML({\n  html\n}) {\n  const ref = useRef(); // If the HTML contains a script tag we can't use\n  // dangerouslySetInnerHTML because it doesn't execute\n  // scripts on the client. Otherwise, we can benefit\n  // from SSG by using dangerouslySetInnerHTML.\n  const hasScript = html.includes(\"</script>\");\n  useEffect(() => {\n    if (!hasScript) return;\n    const div = ref.current;\n    div.innerHTML = html;\n    executeScripts(div);\n    return () => {\n      div.innerHTML = \"\";\n    };\n  }, [html, hasScript]);\n  return /*#__PURE__*/_jsx(\"div\", {\n    ref: ref,\n    style: htmlStyle,\n    dangerouslySetInnerHTML: !hasScript ? {\n      __html: html\n    } : undefined\n  });\n}\nconst htmlStyle = {\n  width: \"100%\",\n  height: \"100%\",\n  display: \"flex\",\n  flexDirection: \"column\",\n  justifyContent: \"center\",\n  alignItems: \"center\"\n}; // This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node) {\n  if (node instanceof Element && node.tagName === \"SCRIPT\") {\n    const script = document.createElement(\"script\");\n    script.text = node.innerHTML;\n    for (const {\n      name,\n      value\n    } of node.attributes) {\n      script.setAttribute(name, value);\n    }\n    node.parentElement.replaceChild(script, node);\n  } else {\n    for (const child of node.childNodes) {\n      executeScripts(child);\n    }\n  }\n} // Generic components\nfunction LoadingIndicator() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-componentPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"Loading\u2026\"\n    })\n  });\n}\nfunction ErrorMessage({\n  message\n}) {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-errorPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsxs(\"div\", {\n      style: centerTextStyle,\n      children: [\"Error: \", message]\n    })\n  });\n}\nconst centerTextStyle = {\n  textAlign: \"center\",\n  minWidth: 140\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Embed\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerDisableUnlink\": \"\",\n        \"framerIntrinsicWidth\": \"600\",\n        \"framerIntrinsicHeight\": \"400\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (36a78eb)\nimport { jsx as e, jsxs as t } from \"react/jsx-runtime\";\nimport { addFonts as r, Container as a, cx as i, GeneratedComponentContext as o, getFonts as n, removeHiddenBreakpointLayers as d, RichText as s, useHydratedBreakpointVariants as m, useLocaleInfo as l, withCSS as p } from \"framer\";\nimport { LayoutGroup as f, motion as h } from \"framer-motion\";\nimport * as c from \"react\";\nimport u from \"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";\nimport b from \"https://framerusercontent.com/modules/FbZeuChu6zwZedK9upNz/GHnrBMPfWCK4CICrPFzB/zndtwdZVE.js\";\nimport x from \"https://framerusercontent.com/modules/zlPLbdwDdXFsdL3LD2cy/Zx93uPX7ZrVFez4fdWbZ/zIGO0XWxe.js\";\nlet w = n(b),\n  y = n(u),\n  E = [\"XG0RqiRX7\", \"rXX4ld5wm\", \"A_2aS1h7r\", \"ChalgxHci\"],\n  g = {\n    A_2aS1h7r: \"(min-width: 810px) and (max-width: 1200px)\",\n    ChalgxHci: \"(max-width: 809px)\",\n    rXX4ld5wm: \"(min-width: 1822px)\",\n    XG0RqiRX7: \"(min-width: 1201px) and (max-width: 1821px)\"\n  },\n  v = () => \"undefined\" != typeof document,\n  F = \"framer-7sEFE\",\n  q = {\n    A_2aS1h7r: \"framer-v-nmrz2y\",\n    ChalgxHci: \"framer-v-7t5klq\",\n    rXX4ld5wm: \"framer-v-9w6tat\",\n    XG0RqiRX7: \"framer-v-qkdpzq\"\n  };\n\"undefined\" != typeof document && d(\"XG0RqiRX7\", g, q);\nlet k = {\n    default: {\n      duration: 0\n    }\n  },\n  X = (e, t) => `translate(-50%, -50%) ${t}`,\n  _ = x(),\n  z = {\n    \"Wide Screen Desktop\": \"rXX4ld5wm\",\n    Desktop: \"XG0RqiRX7\",\n    Phone: \"ChalgxHci\",\n    Tablet: \"A_2aS1h7r\"\n  },\n  N = ({\n    height: e,\n    id: t,\n    width: r,\n    ...a\n  }) => {\n    var i, o;\n    return {\n      ...a,\n      variant: null !== (o = null !== (i = z[a.variant]) && void 0 !== i ? i : a.variant) && void 0 !== o ? o : \"XG0RqiRX7\"\n    };\n  },\n  R = /*#__PURE__*/c.forwardRef(function (r, n) {\n    let {\n        activeLocale: d\n      } = l(),\n      {\n        style: p,\n        className: w,\n        layoutId: y,\n        variant: E,\n        ...v\n      } = N(r);\n    c.useLayoutEffect(() => {\n      let e = x(void 0, d);\n      if (document.title = e.title || \"\", e.viewport) {\n        var t;\n        null === (t = document.querySelector('meta[name=\"viewport\"]')) || void 0 === t || t.setAttribute(\"content\", e.viewport);\n      }\n      if (e.bodyClassName) return Array.from(document.body.classList).filter(e => e.startsWith(\"framer-body-\")).map(e => document.body.classList.remove(e)), document.body.classList.add(`${e.bodyClassName}-framer-7sEFE`), () => {\n        document.body.classList.remove(`${e.bodyClassName}-framer-7sEFE`);\n      };\n    }, [void 0, d]);\n    let [F, _] = m(E, g, !1);\n    k.default;\n    let z = c.useRef(null),\n      R = c.useId();\n    return /*#__PURE__*/e(o.Provider, {\n      value: {\n        primaryVariantId: \"XG0RqiRX7\",\n        variantClassNames: q\n      },\n      children: /*#__PURE__*/e(f, {\n        id: null != y ? y : R,\n        children: /*#__PURE__*/t(h.div, {\n          className: i(\"framer-7sEFE\", ...[]),\n          style: {\n            display: \"contents\"\n          },\n          children: [/*#__PURE__*/t(h.div, {\n            ...v,\n            className: i(\"framer-qkdpzq\", w),\n            ref: null != n ? n : z,\n            style: {\n              ...p\n            },\n            children: [/*#__PURE__*/e(a, {\n              className: \"framer-1frd40f-container\",\n              children: /*#__PURE__*/e(b, {\n                height: \"100%\",\n                id: \"Q8eE7tE8M\",\n                layoutId: \"Q8eE7tE8M\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                variant: \"dwqskhyDF\",\n                width: \"100%\"\n              })\n            }), /*#__PURE__*/e(a, {\n              className: \"framer-qnvlsh-container\",\n              children: /*#__PURE__*/e(u, {\n                height: \"100%\",\n                html: '<div class=\"hb-p-630d412c1039d90008a9f6e9-6\"></div><img height=\"1\" width=\"1\" style=\"display:none\" src=\"https://www.honeybook.com/p.png?pid=630d412c1039d90008a9f6e9\">\\n<script>\\n  (function(h,b,s,n,i,p,e,t) {\\n    h._HB_ = h._HB_ || {};h._HB_.pid = i;;;;\\n    t=b.createElement(s);t.type=\"text/javascript\";t.async=!0;t.src=n;\\n    e=b.getElementsByTagName(s)[0];e.parentNode.insertBefore(t,e);\\n})(window,document,\"script\",\"https://widget.honeybook.com/assets_users_production/websiteplacements/placement-controller.min.js\",\"630d412c1039d90008a9f6e9\");\\n</script>',\n                id: \"L8nBQzNi1\",\n                layoutId: \"L8nBQzNi1\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                type: \"html\",\n                url: '<div class=\"hb-p-630d412c1039d90008a9f6e9-6\"></div><img height=\"1\" width=\"1\" style=\"display:none\" src=\"https://www.honeybook.com/p.png?pid=630d412c1039d90008a9f6e9\"> <script>   (function(h,b,s,n,i,p,e,t) {     h._HB_ = h._HB_ || {};h._HB_.pid = i;;;;     t=b.createElement(s);t.type=\"text/javascript\";t.async=!0;t.src=n;     e=b.getElementsByTagName(s)[0];e.parentNode.insertBefore(t,e); })(window,document,\"script\",\"https://widget.honeybook.com/assets_users_production/websiteplacements/placement-controller.min.js\",\"630d412c1039d90008a9f6e9\"); </script>',\n                width: \"100%\"\n              })\n            }), /*#__PURE__*/e(\"div\", {\n              className: \"framer-10bhd5x\",\n              children: /*#__PURE__*/e(s, {\n                __fromCanvasComponent: !0,\n                children: /*#__PURE__*/e(c.Fragment, {\n                  children: /*#__PURE__*/e(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7QmF1bWFucy1yZWd1bGFy\",\n                      \"--framer-font-family\": '\"Baumans\", sans-serif',\n                      \"--framer-font-size\": \"121px\"\n                    },\n                    children: \"HELLO\"\n                  })\n                }),\n                className: \"framer-zgf0u8\",\n                fonts: [\"GF;Baumans-regular\"],\n                transformTemplate: X,\n                verticalAlignment: \"top\",\n                withExternalLayout: !0\n              })\n            })]\n          }), /*#__PURE__*/e(\"div\", {\n            id: \"overlay\"\n          })]\n        })\n      })\n    });\n  }),\n  B = ['.framer-7sEFE [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; } }\", `.${_.bodyClassName}-framer-7sEFE { background: rgb(190, 124, 77); }`, \".framer-7sEFE .framer-u2r114 { display: block; }\", \".framer-7sEFE .framer-qkdpzq { background-color: #be7c4d; height: 3000px; overflow: hidden; position: relative; width: 1201px; }\", \".framer-7sEFE .framer-1frd40f-container { flex: none; height: 868px; position: absolute; right: 0px; top: 0px; width: 316px; z-index: 10; }\", \".framer-7sEFE .framer-qnvlsh-container { flex: none; height: 1241px; left: calc(50.8742714404663% - 825px / 2); position: absolute; top: 484px; width: 825px; z-index: 5; }\", \".framer-7sEFE .framer-10bhd5x { background-color: #be7c4d; flex: none; height: 527px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\", \".framer-7sEFE .framer-zgf0u8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 51%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\", \"@media (min-width: 1201px) and (max-width: 1821px) { .framer-7sEFE .hidden-qkdpzq { display: none !important; } }\", `@media (min-width: 1822px) { .framer-7sEFE .hidden-9w6tat { display: none !important; } .${_.bodyClassName}-framer-7sEFE { background: rgb(190, 124, 77); } .framer-7sEFE .framer-qkdpzq { width: 1822px; }}`, `@media (min-width: 810px) and (max-width: 1200px) { .framer-7sEFE .hidden-nmrz2y { display: none !important; } .${_.bodyClassName}-framer-7sEFE { background: rgb(190, 124, 77); } .framer-7sEFE .framer-qkdpzq { width: 810px; } .framer-7sEFE .framer-qnvlsh-container { height: 1231px; left: calc(50.00000000000002% - 724px / 2); top: 731px; width: 724px; }}`, `@media (max-width: 809px) { .framer-7sEFE .hidden-7t5klq { display: none !important; } .${_.bodyClassName}-framer-7sEFE { background: rgb(190, 124, 77); } .framer-7sEFE .framer-qkdpzq { width: 390px; } .framer-7sEFE .framer-qnvlsh-container { left: -218px; right: -217px; top: 575px; width: unset; }}`],\n  C = p(R, B, \"framer-7sEFE\");\nexport default C;\nC.displayName = \"Contact Us\", C.defaultProps = {\n  height: 3e3,\n  width: 1201\n}, r(C, [{\n  family: \"Baumans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/zIGO0XWxe:default\",\n    url: \"https://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_8yaksqY5Q.woff2\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_8yaksqY5Q.woff2\",\n  weight: \"400\"\n}, ...w, ...y]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerzIGO0XWxe\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rXX4ld5wm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A_2aS1h7r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ChalgxHci\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicHeight\": \"3000\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicWidth\": \"1201\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "w", "getFonts", "zndtwdZVE_default", "y", "Embed", "g", "q", "removeHiddenBreakpointLayers", "g", "k", "X", "t", "_", "e", "z", "N", "r", "a", "i", "o", "R", "Y", "n", "d", "useLocaleInfo", "p", "w", "y", "E", "v", "fe", "F", "useHydratedBreakpointVariants", "pe", "ae", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "zndtwdZVE_default", "Embed", "RichText", "x", "B", "C", "withCSS", "zIGO0XWxe_default", "addFonts", "__FramerMetadata__"]
}
