diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 975d23b..8c0534f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,16 +2,15 @@ import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterCard from "@/components/sections/footer/FooterCard"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { MapPin } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, - { name: "Services", id: "/services" }, - { name: "Pricing", id: "/pricing" }, { name: "Contact", id: "/contact" }, ]; @@ -32,22 +31,25 @@ export default function ContactPage() {
-