Get in Touch

Please enter the word 'human' to prove you are not a robot.

window.addEventListener(“load”, function () { const root = document.getElementById(“contact-root”); if (!root) return; const api = window[“ContactVC”]; if (!api) { console.error(“ContactVC is not available”); return; } let initial = window.__VC_PROPS__?.[“ContactVC”] || {}; const ssrUrl = “contact” === “home” ? “/” : “/” + “contact”; initial.router ??= “memory”; initial.initialEntries ??= [ssrUrl]; const hasSSR = root.childElementCount > 0; if (hasSSR) api.hydrate(root, initial); else api.mount(root, initial); });