Merge version_1 into main #4
@@ -2,11 +2,11 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function FaqPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -21,157 +21,103 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "faq",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Elegance Hair Co."
|
||||
button={{
|
||||
text: "Shop Now",
|
||||
href: "/shop",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Shop", id: "/shop"},
|
||||
{
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "FAQ", id: "/faq"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Elegance Hair Co."
|
||||
button={{
|
||||
text: "Shop Now", href: "/shop"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq-main" data-section="faq-main">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What types of wigs do you offer?",
|
||||
content: "We offer a wide range of premium wigs including 100% human hair wigs, high-quality synthetic wigs, and blended options in various styles, lengths, and colors.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "How do I choose the right wig for me?",
|
||||
content: "Consider your face shape, desired style, lifestyle, and comfort. Our style guide and customer service team can also provide personalized recommendations.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "How do I care for my wig?",
|
||||
content: "Specific care instructions vary by wig type (human hair vs. synthetic). Generally, gentle washing with specialized products, air-drying, and proper storage are recommended. Refer to our detailed Care Guide for best practices.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Can I style my human hair wig?",
|
||||
content: "Yes, our human hair wigs can be styled just like your natural hair using heat tools, provided you use heat protectant sprays and maintain low to medium heat settings.",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "What is your return policy?",
|
||||
content: "We offer a 30-day return policy for unworn and unaltered wigs in their original packaging. Please see our full Shipping & Returns policy for more details.",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
},
|
||||
]}
|
||||
title="Your Questions, Answered"
|
||||
description="Find quick answers to the most common questions about our products, orders, and services. If you don't see what you're looking for, feel free to contact our support team."
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
title="Your Questions, Answered"
|
||||
description="Find detailed information on our policies, product care, and more to ensure a seamless and confident shopping experience with Elegance Hair Co."
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What is your return policy?", content: "We offer a 14-day return policy for unworn, unaltered wigs and attachments in their original packaging. Please review our full policy on the dedicated Returns page for more details."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What are your shipping options?", content: "We provide several shipping options, including standard and expedited services. Shipping costs and delivery times vary by destination. Details can be found on our Shipping Information page."
|
||||
},
|
||||
{
|
||||
id: "3", title: "How do I choose the right wig?", content: "Consider your face shape, desired style, and material preference (human hair vs. synthetic). Our comprehensive buying guide and customer service team are available to assist you."
|
||||
},
|
||||
{
|
||||
id: "4", title: "How do I care for my wig?", content: "Proper care extends the life of your wig. We recommend using sulfate-free shampoos and conditioners, air-drying, and gentle styling. Specific instructions are provided with each product."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Are your wigs suitable for sensitive scalps?", content: "Many of our wigs feature breathable caps and hypoallergenic materials, designed for comfort even on sensitive scalps. Look for specific product descriptions or contact us for recommendations."
|
||||
},
|
||||
{
|
||||
id: "6", title: "Do you offer international shipping?", content: "Yes, we proudly offer international shipping to a wide range of countries. Please check our Shipping Information page for a list of eligible destinations and associated costs."
|
||||
}
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
ariaLabel="Frequently asked questions section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
{
|
||||
label: "All Wigs",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Human Hair",
|
||||
href: "/shop#human-hair",
|
||||
},
|
||||
{
|
||||
label: "Synthetic Wigs",
|
||||
href: "/shop#synthetic-wigs",
|
||||
},
|
||||
{
|
||||
label: "Hair Extensions",
|
||||
href: "/shop#extensions",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Our Craft",
|
||||
href: "/about#craft",
|
||||
},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Shipping Info",
|
||||
href: "/faq#shipping",
|
||||
},
|
||||
{
|
||||
label: "Return Policy",
|
||||
href: "/faq#return-policy",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Elegance Hair Co. All rights reserved."
|
||||
bottomRightText="Crafting Beauty, Inspiring Confidence."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{
|
||||
label: "All Wigs", href: "/shop"},
|
||||
{
|
||||
label: "Human Hair", href: "/shop#human-hair"},
|
||||
{
|
||||
label: "Synthetic Wigs", href: "/shop#synthetic-wigs"},
|
||||
{
|
||||
label: "Hair Extensions", href: "/shop#extensions"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Our Craft", href: "/about#craft"},
|
||||
{
|
||||
label: "Testimonials", href: "#testimonials"},
|
||||
{
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ", href: "/faq"},
|
||||
{
|
||||
label: "Shipping Info", href: "/faq#shipping"},
|
||||
{
|
||||
label: "Return Policy", href: "/faq#return-policy"},
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Elegance Hair Co. All rights reserved."
|
||||
bottomRightText="Crafting Beauty, Inspiring Confidence."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user