|
|
|
@@ -3,7 +3,7 @@
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
|
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
|
|
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
|
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
|
|
|
|
|
|
|
|
|
|
export default function ContactPage() {
|
|
|
|
export default function ContactPage() {
|
|
|
|
@@ -32,15 +32,21 @@ export default function ContactPage() {
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<ContactSplit
|
|
|
|
<ContactSplitForm
|
|
|
|
tag="Get in Touch"
|
|
|
|
title="Kontaktujte nás"
|
|
|
|
title="Let's Start Your Next Project"
|
|
|
|
description="Radi počujeme od vás! Vyplňte formulár nižšie a my sa vám čoskoro ozveme."
|
|
|
|
description="Tell us about your ideas, and we'll help you bring them to life. Reach out today for a consultation."
|
|
|
|
inputs={[
|
|
|
|
background={{ variant: "rotated-rays-animated" }}
|
|
|
|
{ name: "name", type: "text", placeholder: "Vaše meno", required: true },
|
|
|
|
mediaPosition="right"
|
|
|
|
{ name: "email", type: "email", placeholder: "Váš e-mail", required: true },
|
|
|
|
inputPlaceholder="Your Email Address"
|
|
|
|
{ name: "phone", type: "tel", placeholder: "Telefónne číslo (voliteľné)" }
|
|
|
|
|
|
|
|
]}
|
|
|
|
|
|
|
|
textarea={{ name: "message", placeholder: "Vaša správa", rows: 5, required: true }}
|
|
|
|
|
|
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp?_wi=2"
|
|
|
|
|
|
|
|
imageAlt="Contact us image"
|
|
|
|
|
|
|
|
buttonText="Odoslať správu"
|
|
|
|
useInvertedBackground={false}
|
|
|
|
useInvertedBackground={false}
|
|
|
|
onSubmit={(email) => console.log("Contact form submitted with email:", email)}
|
|
|
|
mediaPosition="right"
|
|
|
|
|
|
|
|
onSubmit={(data) => console.log("Contact form submitted with data:", data)}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<FooterBase
|
|
|
|
<FooterBase
|
|
|
|
|