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 (