diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8cc5ac4..197ae86 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,51 +1,55 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Mail, Phone, MapPin } from 'lucide-react'; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import ContactText from "@/components/sections/contact/ContactText"; +import FaqBase from "@/components/sections/faq/FaqBase"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { HelpCircle, Mail, Phone, MapPin } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Services", id: "services" }, - { name: "Gallery", id: "/gallery" }, - { name: "Packages", id: "/packages" }, + { name: "Gallery", id: "gallery" }, + { name: "Packages", id: "packages" }, { name: "About", id: "about" }, - { name: "Contact", id: "/contact" }, + { name: "Contact", id: "contact" }, ]; const footerColumns = [ { - title: "Services", items: [ + title: "Services", + items: [ { label: "Kids Party Face Painting", href: "/services" }, { label: "Festival Face Art", href: "/services" }, { label: "Corporate Events", href: "/services" }, { label: "Body Painting", href: "/services" }, - { label: "Custom Designs", href: "/services" }, ], }, { - title: "Company", items: [ + title: "Company", + items: [ { label: "About Us", href: "/about" }, { label: "Gallery", href: "/gallery" }, { label: "Packages", href: "/packages" }, - { label: "FAQ", href: "#faq" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Connect", items: [ + title: "Connect", + items: [ { label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }, { label: "TikTok", href: "https://tiktok.com" }, { label: "Email", href: "mailto:paintasy@events.com" }, - { label: "Phone", href: "tel:+15551234567" }, ], }, { - title: "Service Areas", items: [ + title: "Service Areas", + items: [ { label: "Local Events", href: "/contact" }, { label: "Regional Coverage", href: "/contact" }, { label: "Book Now", href: "/packages" }, @@ -69,48 +73,111 @@ export default function ContactPage() { > -
- + { - console.log("Form submitted with email:", email); - }} - ariaLabel="Contact form section" - containerClassName="gap-12" - tagClassName="text-sm" - titleClassName="text-4xl font-extrabold" - descriptionClassName="text-lg opacity-90 max-w-2xl" - buttonClassName="px-8 py-3" - buttonTextClassName="font-semibold" + titleClassName="text-5xl font-extrabold" + descriptionClassName="text-lg opacity-90" />
-