Merge version_1 into main #5
213
src/app/page.tsx
213
src/app/page.tsx
@@ -26,117 +26,120 @@ export default function LandingPage() {
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="LUXX PERFUMES"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="LUXX PERFUMES"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Smell Like Luxury, Live Like Royalty"
|
||||
description="Experience our collection of artisanal fragrances crafted for the discerning individual. Pure elegance in every bottle."
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/still-life-with-plants-deco_23-2149192218.jpg", alt: "Luxury Fragrance" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/orange-faded-flower-vase_23-2148073849.jpg", alt: "Elegance" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/ceramic-vases-with-flowers_23-2148879014.jpg", alt: "Artisan" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/black-white-beauty-product_23-2151307265.jpg", alt: "Craft" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/advertisement-spirits-with-floating-bottle_23-2151258102.jpg", alt: "Luxury" },
|
||||
]}
|
||||
buttons={[{ text: "Shop Now", href: "/shop" }]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Artisanal Craftsmanship" },
|
||||
{ type: "text", text: "Rare Ingredients" },
|
||||
{ type: "text", text: "Timeless Elegance" },
|
||||
{ type: "text", text: "Exclusively Curated" },
|
||||
{ type: "text", text: "Scent of Royalty" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Smell Like Luxury, Live Like Royalty"
|
||||
description="Experience our collection of artisanal fragrances crafted for the discerning individual. Pure elegance in every bottle."
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/still-life-with-plants-deco_23-2149192218.jpg", alt: "Luxury Fragrance" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/orange-faded-flower-vase_23-2148073849.jpg", alt: "Elegance" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/ceramic-vases-with-flowers_23-2148879014.jpg", alt: "Artisan" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/black-white-beauty-product_23-2151307265.jpg", alt: "Craft" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/advertisement-spirits-with-floating-bottle_23-2151258102.jpg", alt: "Luxury" },
|
||||
]}
|
||||
buttons={[{ text: "Shop Now", href: "/shop" }]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Artisanal Craftsmanship" },
|
||||
{ type: "text", text: "Rare Ingredients" },
|
||||
{ type: "text", text: "Timeless Elegance" },
|
||||
{ type: "text", text: "Exclusively Curated" },
|
||||
{ type: "text", text: "Scent of Royalty" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="featured" data-section="featured">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Royal Gold", price: "$290", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-plants-deco_23-2149192218.jpg" },
|
||||
{ id: "p2", name: "Midnight Oud", price: "$350", imageSrc: "http://img.b2bpic.net/free-photo/orange-faded-flower-vase_23-2148073849.jpg" },
|
||||
{ id: "p3", name: "Amber Noir", price: "$275", imageSrc: "http://img.b2bpic.net/free-photo/ceramic-vases-with-flowers_23-2148879014.jpg" },
|
||||
{ id: "p4", name: "Sandalwood Silk", price: "$310", imageSrc: "http://img.b2bpic.net/free-photo/black-white-beauty-product_23-2151307265.jpg" },
|
||||
{ id: "p5", name: "Azure Bloom", price: "$240", imageSrc: "http://img.b2bpic.net/free-photo/advertisement-spirits-with-floating-bottle_23-2151258102.jpg" },
|
||||
{ id: "p6", name: "Golden Muse", price: "$390", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-product-container-with-art-nouveau-inspired-sun-relief-background_23-2151420648.jpg" },
|
||||
]}
|
||||
title="Featured Collections"
|
||||
description="Exquisite scents for special occasions."
|
||||
/>
|
||||
</div>
|
||||
<div id="featured" data-section="featured">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Royal Gold", price: "$290", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-plants-deco_23-2149192218.jpg" },
|
||||
{ id: "p2", name: "Midnight Oud", price: "$350", imageSrc: "http://img.b2bpic.net/free-photo/orange-faded-flower-vase_23-2148073849.jpg" },
|
||||
{ id: "p3", name: "Amber Noir", price: "$275", imageSrc: "http://img.b2bpic.net/free-photo/ceramic-vases-with-flowers_23-2148879014.jpg" },
|
||||
{ id: "p4", name: "Sandalwood Silk", price: "$310", imageSrc: "http://img.b2bpic.net/free-photo/black-white-beauty-product_23-2151307265.jpg" },
|
||||
{ id: "p5", name: "Azure Bloom", price: "$240", imageSrc: "http://img.b2bpic.net/free-photo/advertisement-spirits-with-floating-bottle_23-2151258102.jpg" },
|
||||
{ id: "p6", name: "Golden Muse", price: "$390", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-product-container-with-art-nouveau-inspired-sun-relief-background_23-2151420648.jpg" },
|
||||
]}
|
||||
title="Featured Collections"
|
||||
description="Exquisite scents for special occasions."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="brand-story" data-section="brand-story">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="Our Story"
|
||||
title="Crafted for Perfection"
|
||||
description="At Luxx Perfumes, we believe in the alchemy of scent. Every blend is curated using the finest ingredients from across the globe."
|
||||
subdescription="Dedicated to excellence, our masters combine timeless tradition with modern luxury."
|
||||
icon={Sparkles}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/girly-items-arrangement-table_23-2148229223.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="brand-story" data-section="brand-story">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="Our Story"
|
||||
title="Crafted for Perfection"
|
||||
description="At Luxx Perfumes, we believe in the alchemy of scent. Every blend is curated using the finest ingredients from across the globe."
|
||||
subdescription="Dedicated to excellence, our masters combine timeless tradition with modern luxury."
|
||||
icon={Sparkles}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/girly-items-arrangement-table_23-2148229223.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="section"
|
||||
title="Terms of Authenticity"
|
||||
sections={[
|
||||
{
|
||||
heading: "Our Commitment", content: { text: "Every bottle sold by Luxx Perfumes is guaranteed authentic, sourced directly from our master perfumers." },
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="section"
|
||||
title="Terms of Authenticity"
|
||||
sections={[
|
||||
{
|
||||
heading: "Our Commitment",
|
||||
content: "Every bottle sold by Luxx Perfumes is guaranteed authentic, sourced directly from our master perfumers."
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-home" data-section="contact-home">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Stay Updated"
|
||||
title="Join the Elite"
|
||||
description="Subscribe to our newsletter to receive exclusive offers and early access to new collections."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-home" data-section="contact-home">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Stay Updated"
|
||||
title="Join the Elite"
|
||||
description="Subscribe to our newsletter to receive exclusive offers and early access to new collections."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "All Fragrances", href: "/shop" },
|
||||
{ label: "New Arrivals", href: "/shop" },
|
||||
{ label: "Best Sellers", href: "/shop" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Privacy Policy", href: "/privacy" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="LUXX PERFUMES"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
{ label: "All Fragrances", href: "/shop" },
|
||||
{ label: "New Arrivals", href: "/shop" },
|
||||
{ label: "Best Sellers", href: "/shop" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Privacy Policy", href: "/privacy" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="LUXX PERFUMES"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user