diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..6aeb012 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Phone, Facebook, Linkedin, Instagram } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ console.log('Contact form submission:', email)} + className="py-20" + /> +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0288a27..73210bd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,8 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Our Team", id: "team" }, { name: "Testimonials", id: "testimonials" }, - { name: "FAQ", id: "faq" } + { name: "FAQ", id: "faq" }, + { name: "Contact", id: "/contact" } ]} button={{ text: "Book Appointment", href: "#contact"