diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx
index fc69ca4..35c1bd5 100644
--- a/src/app/faq/page.tsx
+++ b/src/app/faq/page.tsx
@@ -1,5 +1,6 @@
"use client";
+import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import FaqDouble from "@/components/sections/faq/FaqDouble";
@@ -8,54 +9,87 @@ import { HelpCircle } from "lucide-react";
export default function FaqPage() {
const navItems = [
- { name: "Home", id: "/" },
+ { name: "Home", id: "home" },
{ 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 = [
{
- title: "Shop", items: [
+ title: "Shop",
+ items: [
{ label: "All Products", href: "/shop" },
- { label: "New Arrivals", href: "/shop" },
- { label: "Best Sellers", href: "/shop" },
- { label: "Brands", href: "/shop" },
+ { label: "New Arrivals", href: "/new-arrivals" },
+ { label: "Best Sellers", href: "/best-sellers" },
+ { label: "Brands", href: "/brands" },
],
},
{
- title: "Company", items: [
- { label: "About Us", href: "/" },
- { label: "Contact", href: "/" },
- { label: "Blog", href: "/" },
+ title: "Company",
+ items: [
+ { label: "About Us", href: "/about" },
+ { label: "Contact", href: "/contact" },
+ { label: "Blog", href: "/blog" },
{ label: "Careers", href: "#" },
],
},
{
- title: "Support", items: [
- { label: "Shipping & Returns", href: "/shipping-and-returns" },
+ title: "Support",
+ items: [
+ { label: "Shipping & Returns", href: "/faq" },
{ label: "FAQ", href: "/faq" },
{ label: "Size Guide", href: "#" },
{ label: "Track Order", href: "#" },
],
},
{
- title: "Legal", items: [
- { label: "Privacy Policy", href: "/privacy-policy" },
- { label: "Terms & Conditions", href: "/terms-and-conditions" },
+ title: "Legal",
+ items: [
+ { label: "Privacy Policy", href: "/privacy" },
+ { label: "Terms & Conditions", href: "/terms" },
{ label: "Cookie Policy", href: "#" },
{ label: "Accessibility", href: "#" },
],
},
];
+ const faqs = [
+ {
+ 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.",
+ },
+ {
+ 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.",
+ },
+ {
+ id: "faq-004",
+ title: "Do you ship internationally?",
+ content: "Yes, we ship to most countries worldwide. International shipping rates and delivery times vary by location. Customs duties may apply depending on your country.",
+ },
+ {
+ 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.",
+ },
+ ];
+
return (
+ Find answers to common questions about our products, shipping, returns, and more. +
++ Every product on garraagarmzz is authenticated by our expert team and sourced directly from authorized retailers. We stand behind every purchase. +
++ Your transactions are protected with industry-standard SSL encryption. We never store your full credit card details on our servers. +
++ Orders are processed within 24 hours and shipped with tracking. Standard shipping to the US takes 5-7 business days. +
++ Our support team is available via email. We respond to all inquiries within 24 business hours. Your satisfaction is our priority. +
+