diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 45c3340..ae36c71 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,9 +1,9 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import ContactText from "@/components/sections/contact/ContactText"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterSimple from "@/components/sections/footer/FooterSimple"; @@ -16,24 +16,21 @@ export default function ContactPage() { { name: "Contact", id: "contact" }, ]; - const navButton = { - text: "See Your 10-Minute Setup", href: "#contact"}; - const footerColumns = [ { title: "Product", items: [ - { label: "Features", href: "#features" }, - { label: "Pricing", href: "#pricing" }, + { label: "Features", href: "/#features" }, + { label: "Pricing", href: "/pricing" }, { label: "Security", href: "#" }, { label: "Roadmap", href: "#" }, ], }, { title: "Company", items: [ - { label: "About", href: "/about" }, + { label: "About", href: "#" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, - { label: "Contact", href: "#contact" }, + { label: "Contact", href: "/contact" }, ], }, { @@ -69,9 +66,11 @@ export default function ContactPage() { >
@@ -79,13 +78,46 @@ export default function ContactPage() {