From 1f85f980d1ae5f56e843291d767d5eb8ba3a2c98 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:34:52 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 47 ++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index d46afaf..22d0d61 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -4,21 +4,22 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import ContactForm from "@/components/form/ContactForm"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Zap } from "lucide-react"; +import { Zap, Mail } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "How It Works", id: "how-it-works" }, - { name: "Services", id: "services" }, - { name: "Pricing", id: "pricing" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "How It Works", id: "/how-it-works" }, + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Features", href: "#" }, { label: "Pricing", href: "/pricing" }, { label: "Security", href: "#" }, @@ -26,8 +27,7 @@ export default function ContactPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About", href: "/about" }, { label: "Blog", href: "#" }, { label: "Contact", href: "/contact" }, @@ -35,8 +35,7 @@ export default function ContactPage() { ], }, { - title: "Industries", - items: [ + title: "Industries", items: [ { label: "Dental Practices", href: "/industries" }, { label: "Salons & Spas", href: "/industries" }, { label: "Restaurants", href: "/industries" }, @@ -44,8 +43,7 @@ export default function ContactPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -70,7 +68,7 @@ export default function ContactPage() { @@ -84,22 +82,25 @@ export default function ContactPage() { tagIcon={Zap} tagAnimation="slide-up" buttons={[ - { text: "Book Your Demo Now", href: "#contact" }, - { text: "Schedule a Call", href: "#contact" }, + { text: "Book Your Demo Now", href: "#contact-form" }, + { text: "Schedule a Call", href: "#contact-form" }, ]} buttonAnimation="slide-up" mediaAnimation="none" /> -
- + console.log("Contact from:", email)} + centered={true} />
@@ -112,4 +113,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +}