diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 14ba77f..7288f58 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,23 +3,19 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; -import SplitAbout from "@/components/sections/about/SplitAbout"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Phone, Mail, MapPin, Clock } from "lucide-react"; +import { Phone, MapPin, Clock } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, - { name: "Reviews", id: "/contact" }, + { name: "Reviews", id: "/" }, { name: "Contact", id: "/contact" }, ]; - const handleContactSubmit = (data: Record) => { - console.log("Contact form submitted:", data); - }; - return (
-
@@ -112,4 +85,4 @@ export default function ContactPage() {
); -} \ No newline at end of file +}