From ca72a19823c9218237f3daa946a2ea9016743ead Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 21:07:19 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 63 +++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 37 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index e665c3f..dd57326 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,22 +3,11 @@ import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import { Mail } from "lucide-react"; -import type { Metadata } from "next"; - -export const metadata: Metadata = { - title: "Contact Webild: Get Your Project Started", description: "Reach out to Webild for web development, SEO, and branding inquiries. Submit your budget, ask questions, or schedule a consultation." -}; +import ContactForm from "@/components/form/ContactForm"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import { MessageCircle } from "lucide-react"; export default function ContactPage() { - const handleContactSubmit = (email: string) => { - console.log("Contact form submitted with email:", email); - alert(`Thank you for your inquiry! We'll be in touch soon at ${email}.`); - // In a real application, you'd send this to a backend API - }; - return ( - -