Merge version_10 into main
Merge version_10 into main
This commit was merged in pull request #21.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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";
|
||||
|
||||
export default function ContactPage() {
|
||||
@@ -32,15 +32,21 @@ export default function ContactPage() {
|
||||
]}
|
||||
/>
|
||||
|
||||
<ContactSplit
|
||||
tag="Get in Touch"
|
||||
title="Let's Start Your Next Project"
|
||||
description="Tell us about your ideas, and we'll help you bring them to life. Reach out today for a consultation."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Your Email Address"
|
||||
<ContactSplitForm
|
||||
title="Kontaktujte nás"
|
||||
description="Radi počujeme od vás! Vyplňte formulár nižšie a my sa vám čoskoro ozveme."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Vaše meno", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Váš e-mail", required: true },
|
||||
{ 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}
|
||||
onSubmit={(email) => console.log("Contact form submitted with email:", email)}
|
||||
mediaPosition="right"
|
||||
onSubmit={(data) => console.log("Contact form submitted with data:", data)}
|
||||
/>
|
||||
|
||||
<FooterBase
|
||||
|
||||
Reference in New Issue
Block a user