From 81bbadc9d9c3233b4e6d6f9233e96b330cda25b2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:32:44 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 75 ++++++++++++++++------------------------ 1 file changed, 30 insertions(+), 45 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 75d8242..cd9669c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,15 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from "next/link"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import FeatureBento from "@/components/sections/feature/FeatureBento"; -import FaqBase from "@/components/sections/faq/FaqBase"; +import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FooterCard from "@/components/sections/footer/FooterCard"; import { Mail, Phone, MapPin, Clock, Instagram, Facebook, Twitter } from "lucide-react"; const navItems = [ { name: "Shop", id: "/products" }, - { name: "About Us", id: "/about" }, + { name: "About", id: "/about" }, { name: "Subscription", id: "/subscription" }, { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" }, @@ -19,24 +19,23 @@ const navItems = [ export default function ContactPage() { return ( {/* Navigation */} @@ -79,38 +78,28 @@ export default function ContactPage() { {/* FAQ Section */}
-
@@ -123,23 +112,19 @@ export default function ContactPage() { socialLinks={[ { icon: Instagram, - href: "https://instagram.com/fincadonmanuel", ariaLabel: "Follow us on Instagram" - }, + href: "https://instagram.com/fincadonmanuel", ariaLabel: "Follow us on Instagram"}, { icon: Facebook, - href: "https://facebook.com/fincadonmanuel", ariaLabel: "Follow us on Facebook" - }, + href: "https://facebook.com/fincadonmanuel", ariaLabel: "Follow us on Facebook"}, { icon: Twitter, - href: "https://twitter.com/fincadonmanuel", ariaLabel: "Follow us on Twitter" - }, + href: "https://twitter.com/fincadonmanuel", ariaLabel: "Follow us on Twitter"}, { icon: Mail, - href: "mailto:hello@fincadonmanuel.com", ariaLabel: "Email us" - }, + href: "mailto:hello@fincadonmanuel.com", ariaLabel: "Email us"}, ]} />
); -} \ No newline at end of file +}