Update src/app/faq/page.tsx

This commit is contained in:
2026-03-13 19:39:44 +00:00
parent fad950c898
commit 92cafedafa

View File

@@ -8,13 +8,17 @@ import { HelpCircle } from "lucide-react";
export default function FaqPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Home", id: "/" },
{ name: "Shop", id: "shop" },
{ name: "Brands", id: "brands" },
{ name: "New Arrivals", id: "new-arrivals" },
{ name: "Best Sellers", id: "best-sellers" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "FAQ", id: "/faq" },
{ name: "Shipping & Returns", id: "/shipping-and-returns" },
{ name: "Privacy Policy", id: "/privacy-policy" },
{ name: "Terms & Conditions", id: "/terms-and-conditions" },
];
const footerColumns = [
@@ -36,7 +40,7 @@ export default function FaqPage() {
},
{
title: "Support", items: [
{ label: "Shipping & Returns", href: "/shipping-returns" },
{ label: "Shipping & Returns", href: "/shipping-and-returns" },
{ label: "FAQ", href: "/faq" },
{ label: "Size Guide", href: "#" },
{ label: "Track Order", href: "#" },
@@ -45,7 +49,7 @@ export default function FaqPage() {
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy-policy" },
{ label: "Terms & Conditions", href: "/terms-conditions" },
{ label: "Terms & Conditions", href: "/terms-and-conditions" },
{ label: "Cookie Policy", href: "#" },
{ label: "Accessibility", href: "#" },
],
@@ -82,7 +86,7 @@ export default function FaqPage() {
<div id="faq-section" data-section="faq-section">
<FaqDouble
title="Frequently Asked Questions"
description="Find answers to common questions about our products, shipping, returns, and more."
description="Find answers to common questions about our products, shipping, and returns."
tag="Support"
tagIcon={HelpCircle}
tagAnimation="slide-up"
@@ -93,7 +97,7 @@ export default function FaqPage() {
{
id: "faq-001", title: "Are all products authentic?", content: "Yes, we guarantee 100% authenticity for all items sold on garraagarmzz. We source directly from authorized retailers and brand partnerships. Each item undergoes quality verification before being listed."},
{
id: "faq-002", title: "What is your return policy?", content: "We offer a 30-day return policy on all items. Products must be unworn, unwashed, and in original packaging with all tags attached. Returns are free within the US. Visit our Shipping & Returns page for more details."},
id: "faq-002", title: "What is your return policy?", content: "We offer a 30-day return policy on all items. Products must be unworn, unwashed, and in original packaging with all tags attached. Returns are free within the US."},
{
id: "faq-003", title: "How long does shipping take?", content: "Standard shipping takes 5-7 business days. Express shipping (2-3 business days) and overnight shipping options are available at checkout. Orders are processed within 24 hours."},
{
@@ -102,14 +106,10 @@ export default function FaqPage() {
id: "faq-005", title: "What payment methods do you accept?", content: "We accept all major credit cards, PayPal, Apple Pay, Google Pay, and Klarna. All payments are secured with SSL encryption."},
{
id: "faq-006", title: "Can I track my order?", content: "Yes, tracking information is sent to your email immediately after your order ships. You can also track your order in your account dashboard."},
{
id: "faq-007", title: "How do I contact customer support?", content: "You can reach our customer support team via email at support@garraagarmzz.com, through our contact form on the website, or via phone during business hours. We aim to respond within 24 hours."},
{
id: "faq-008", title: "Do you offer size exchanges?", content: "Yes, we offer free size exchanges within 30 days of purchase. Simply contact our customer service team with your order number and preferred size."},
]}
buttons={[{ text: "Visit Support Center", href: "/contact" }]}
buttons={[{ text: "View Full Policy", href: "/" }]}
buttonAnimation="slide-up"
ariaLabel="Frequently asked questions page"
ariaLabel="FAQ page"
/>
</div>
@@ -123,4 +123,4 @@ export default function FaqPage() {
</div>
</ThemeProvider>
);
}
}