From 215dfaf746e79a34636b280f5f4eade51518f417 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:47:54 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 120 +++++++-------------------------------- 1 file changed, 22 insertions(+), 98 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 152fe71..ae4d17e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,116 +1,40 @@ -"use client"; +'use client'; -import { useState } from "react"; -import { ThemeProvider } from "@/components/theme/ThemeProvider"; -import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; -import FooterMedia from "@/components/sections/footer/FooterMedia"; -import LegalSection from "@/components/legal/LegalSection"; -import { Mail, Phone, MapPin } from "lucide-react"; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -export default function Contact() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "FAQ", id: "/faq" }, - { name: "Contact", id: "/contact" }, - ]; +const navItems = [ + { name: 'Home', id: '/' }, + { name: 'Features', id: '/#features' }, + { name: 'Dashboard', id: '/dashboard' }, + { name: 'Sign In', id: '/login' }, +]; +export default function ContactPage() { return ( - - -
- +
- -
- -
- -