diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index dd1fe04..4b42406 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,119 +1,31 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactFaq from '@/components/sections/contact/ContactFaq'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Mail } from "lucide-react"; -export default function LandingPage() { +export default function ContactPage() { return ( - - - - -
- -
- -
- -
- - -
+ logoText="Masi Digital" + columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About", href: "/about" }] }]} + />
); -} +} \ No newline at end of file