Update src/app/faq/page.tsx

This commit is contained in:
2026-03-27 10:37:59 +00:00
parent fde4df738c
commit 52af2248a6

View File

@@ -6,99 +6,55 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
export default function LandingPage() {
export default function FaqPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "FAQ",
id: "/faq",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Sweet Temptation"
/>
</div>
<div id="faq-info" data-section="faq-info">
<FaqSplitText
useInvertedBackground={false}
faqs={[
{
id: "q1",
title: "What is your return policy?",
content: "We offer hassle-free returns within 30 days.",
},
{
id: "q2",
title: "How do I find my size?",
content: "Please check our comprehensive size guide.",
},
{
id: "q3",
title: "Do you offer discreet shipping?",
content: "All orders are shipped in unmarked, discreet packaging.",
},
]}
sideTitle="Common Questions"
faqsAnimation="blur-reveal"
/>
</div>
<div id="main-footer" data-section="main-footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Shop",
href: "/shop",
},
{
label: "About",
href: "/about",
},
],
},
{
items: [
{
label: "Support",
href: "/contact",
},
{
label: "FAQ",
href: "/faq",
},
],
},
]}
logoText="Veloura Intimates"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sweet Temptation"
/>
</div>
<div id="faq-info" data-section="faq-info">
<FaqSplitText
faqs={[
{ id: "q1", title: "What is your return policy?", content: "We offer hassle-free returns within 30 days." },
{ id: "q2", title: "How do I find my size?", content: "Please check our comprehensive size guide." },
{ id: "q3", title: "Do you offer discreet shipping?", content: "All orders are shipped in unmarked, discreet packaging." }
]}
sideTitle="Common Questions"
faqsAnimation="blur-reveal"
useInvertedBackground={false}
/>
</div>
<div id="main-footer" data-section="main-footer">
<FooterLogoEmphasis
logoText="Veloura Intimates"
columns={[
{ items: [{ label: "Shop", href: "/shop" }, { label: "About", href: "/about" }] },
{ items: [{ label: "Support", href: "/contact" }, { label: "FAQ", href: "/faq" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}