Add src/app/faq/page.tsx

This commit is contained in:
2026-04-08 00:01:56 +00:00
parent 5344e04961
commit 0a906ea81a

41
src/app/faq/page.tsx Normal file
View File

@@ -0,0 +1,41 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import FaqDouble from '@/components/sections/faq/FaqDouble';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function FaqPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Shop", id: "/products" },
{ name: "Story", id: "/story" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
{ name: "Drop List", id: "/newsletter" },
]}
brandName="Everthread Vintage"
/>
<FaqDouble
title="Frequently Asked Questions"
description="Everything you need to know about our curation and shipping process."
faqsAnimation="slide-up"
textboxLayout="default"
faqs={[
{ id: "1", title: "How do you source your vintage?", content: "We source pieces through curated collections and verified archives to ensure quality and authenticity." },
{ id: "2", title: "What is your shipping policy?", content: "We offer worldwide shipping with tracking information provided for every order." }
]}
/>
<FooterBase
columns={[
{ title: "Shop", items: [{ label: "All Drops", href: "/products" }, { label: "Best Sellers", href: "#" }] },
{ title: "Company", items: [{ label: "Our Story", href: "/story" }, { label: "Sustainability", href: "#" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "FAQ", href: "/faq" }, { label: "Shipping", href: "#" }] },
]}
logoText="Everthread Vintage"
/>
</ThemeProvider>
);
}