From c2adcaf5e9b96ccb22b2d52c0a2545139e3892a2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:19:32 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 156f5ce..c063703 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -10,11 +10,10 @@ import { Mail } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Shop", id: "shop" }, - { name: "Collections", id: "collections" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "Account", id: "account" }, + { name: "Home", id: "/" }, + { name: "Shop", id: "products" }, + { name: "Reviews", id: "testimonials" }, + { name: "Contact", id: "contact-cta" }, ]; const footerColumns = [ @@ -87,7 +86,7 @@ export default function ContactPage() { { text: "Email Support", href: "mailto:support@stylehub.com" }, { text: "Live Chat", href: "#" }, ]} - background={{ variant: "plain" }} + background={{ variant: "sparkles-gradient" }} useInvertedBackground={false} /> @@ -101,23 +100,17 @@ export default function ContactPage() { faqsAnimation="slide-up" faqs={[ { - id: "1", title: "What payment methods do you accept?", content: - "We accept all major credit cards (Visa, MasterCard, American Express), PayPal, Apple Pay, and Google Pay. All transactions are secure and encrypted."}, + id: "1", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, MasterCard, American Express), PayPal, Apple Pay, and Google Pay. All transactions are secure and encrypted."}, { - id: "2", title: "How long does shipping take?", content: - "Standard shipping takes 5-7 business days. Express shipping (2-3 days) is available for orders over $75. International orders typically arrive within 10-15 business days."}, + id: "2", title: "How long does shipping take?", content: "Standard shipping takes 5-7 business days. Express shipping (2-3 days) is available for orders over $75. International orders typically arrive within 10-15 business days."}, { - id: "3", title: "What is your return policy?", content: - "We offer a 30-day money-back guarantee on all items. Items must be unworn and in original packaging. Return shipping is free for orders over $50."}, + id: "3", title: "What is your return policy?", content: "We offer a 30-day money-back guarantee on all items. Items must be unworn and in original packaging. Return shipping is free for orders over $50."}, { - id: "4", title: "Do you offer international shipping?", content: - "Yes, we ship to over 150 countries worldwide. International orders include tracking and insurance. Customs fees may apply depending on your location."}, + id: "4", title: "Do you offer international shipping?", content: "Yes, we ship to over 150 countries worldwide. International orders include tracking and insurance. Customs fees may apply depending on your location."}, { - id: "5", title: "How do I track my order?", content: - "Once your order ships, you'll receive a tracking number via email. You can track your package in real-time on our website or through the carrier's app."}, + id: "5", title: "How do I track my order?", content: "Once your order ships, you'll receive a tracking number via email. You can track your package in real-time on our website or through the carrier's app."}, { - id: "6", title: "Are your products sustainable?", content: - "We prioritize ethical sourcing and work with designers who use sustainable materials. Many of our collections feature eco-friendly production practices."}, + id: "6", title: "Are your products sustainable?", content: "We prioritize ethical sourcing and work with designers who use sustainable materials. Many of our collections feature eco-friendly production practices."}, ]} /> @@ -131,4 +124,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +}