From 09828899149b34777502c2f641b70e2f9f96d805 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 12:54:11 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 198 ++++++++++++++------------------------- 1 file changed, 68 insertions(+), 130 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c4a37f8..1ed0de0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,65 +1,60 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import TextAbout from "@/components/sections/about/TextAbout"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FaqDouble from "@/components/sections/faq/FaqDouble"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "Solutions", id: "/solutions" }, + { name: "Pricing", id: "pricing" }, + { name: "Compliance", id: "compliance" }, + { name: "Contact", id: "contact" }, +]; + +const footerColumns = [ + { + title: "Product", items: [ + { label: "Features", href: "/solutions" }, + { label: "Pricing", href: "pricing" }, + { label: "Compliance", href: "compliance" }, + { label: "Security", href: "#" }, + { label: "Status", href: "#" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Blog", href: "/blog" }, + { label: "Careers", href: "/careers" }, + { label: "Press", href: "/press" }, + { label: "Contact", href: "contact" }, + ], + }, + { + title: "Resources", items: [ + { label: "Documentation", href: "/docs" }, + { label: "API Reference", href: "/api" }, + { label: "Case Studies", href: "/case-studies" }, + { label: "Webinars", href: "/webinars" }, + { label: "Community", href: "/community" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Service", href: "/terms" }, + { label: "Security Policy", href: "/security" }, + { label: "Compliance", href: "/compliance-standards" }, + { label: "Cookie Policy", href: "/cookies" }, + ], + }, +]; export default function ContactPage() { - const navItems = [ - { name: "Home", id: "home" }, - { name: "Solutions", id: "solutions" }, - { name: "Pricing", id: "pricing" }, - { name: "Compliance", id: "compliance" }, - { name: "Contact", id: "contact" }, - ]; - - const footerColumns = [ - { - title: "Product", - items: [ - { label: "Features", href: "/" }, - { label: "Pricing", href: "/" }, - { label: "Compliance", href: "/compliance" }, - { label: "Security", href: "#" }, - { label: "Status", href: "#" }, - ], - }, - { - title: "Company", - items: [ - { label: "About Us", href: "/about" }, - { label: "Blog", href: "/blog" }, - { label: "Careers", href: "/careers" }, - { label: "Press", href: "/press" }, - { label: "Contact", href: "/contact" }, - ], - }, - { - title: "Resources", - items: [ - { label: "Documentation", href: "/docs" }, - { label: "API Reference", href: "/api" }, - { label: "Case Studies", href: "/case-studies" }, - { label: "Webinars", href: "/webinars" }, - { label: "Community", href: "/community" }, - ], - }, - { - title: "Legal", - items: [ - { label: "Privacy Policy", href: "/privacy" }, - { label: "Terms of Service", href: "/terms" }, - { label: "Security Policy", href: "/security" }, - { label: "Compliance", href: "/compliance-standards" }, - { label: "Cookie Policy", href: "/cookies" }, - ], - }, - ]; - return ( -
- -
- -
+
-
+
@@ -201,4 +139,4 @@ export default function ContactPage() {
); -} \ No newline at end of file +} -- 2.49.1