From 21be928b961dffa10fa91ddcb647f07a39de14b6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 21:20:25 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 134 +++++++-------------------------------- 1 file changed, 23 insertions(+), 111 deletions(-) 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