Files
cb5fdd29-588a-4c44-aee4-8cf…/src/app/page.tsx
2026-05-15 12:20:43 +00:00

152 lines
5.4 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { Sparkles } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="small"
sizing="mediumLargeSizeMediumTitles"
background="noise"
cardStyle="soft-shadow"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Products", id: "products" },
{ name: "Contact", id: "contact" },
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DlC7dO4OkHvss25WwEI4u7OmkH/uploaded-1778847604292-7rvz96vp.png"
brandName="Alya'an Perfume"
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
background={{ variant: "gradient-bars" }}
title="Timeless Elegance in Every Bottle"
description="Elevate your daily presence with scents that command attention and linger in memory."
kpis={[
{ value: "20+", label: "Exclusive Scents" },
{ value: "100%", label: "Pure Essence" },
{ value: "Award", label: "Luxury Craft" },
]}
enableKpiAnimation={true}
buttons={[{ text: "Explore Scents", href: "#products" }]}
imageSrc="http://img.b2bpic.net/free-photo/cupcake-still-life_23-2148097711.jpg"
mediaAnimation="blur-reveal"
/>
</div>
<div id="about" data-section="about">
<TestimonialAboutCard
useInvertedBackground={false}
tag="Our Heritage"
title="The Art of Scent"
description="Alya'an Perfume is born from a desire to encapsulate emotions and memories into liquid form. Our perfumers meticulously blend rare botanical extracts to ensure every fragrance tells a story of sophistication."
subdescription="Crafted with passion, worn with distinction."
icon={Sparkles}
imageSrc="http://img.b2bpic.net/free-photo/woman-preparing-foam-barbershop_23-2147737003.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="features" data-section="features">
<FeatureCardNine
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
showStepNumbers={true}
features={[]}
title="Defining Moments"
description="Why choose Alya'an? We believe in artistry that transcends the mundane."
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[]}
title="Quality in Numbers"
description="Our commitment to excellence quantified."
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[]}
title="Signature Collections"
description="Explore our curated selection of luxury fragrances."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
textboxLayout="default"
useInvertedBackground={false}
testimonials={[]}
title="Loved by Aficionados"
description="Hear what our distinguished clients say."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={false}
faqs={[]}
sideTitle="Expert Guidance"
sideDescription="Common queries regarding our fragrances."
faqsAnimation="blur-reveal"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
tag="Get in Touch"
title="Join Our Journey"
description="Sign up for updates on our latest scent releases and exclusive boutique events."
imageSrc="http://img.b2bpic.net/free-photo/beautiful-woman-shopping-organic-products_23-2148672816.jpg"
mediaAnimation="blur-reveal"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DlC7dO4OkHvss25WwEI4u7OmkH/uploaded-1778847604292-7rvz96vp.png"
columns={[]}
logoText="Alya'an Perfume"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}