Merge version_1 into main #2
@@ -7,96 +7,58 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import { Heart } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
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">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Veloura Intimates"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Veloura Intimates"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-story" data-section="about-story">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={true}
|
||||
tag="Our Story"
|
||||
title="Feeling Beautiful in Your Own Skin"
|
||||
description="At Veloura Intimates, we believe confidence starts from within. Our brand was born from a passion for self-love, creating pieces that honor your unique shape and spirit."
|
||||
subdescription="Every design is a celebration of the empowered woman."
|
||||
icon={Heart}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png?_wi=5"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="about-story" data-section="about-story">
|
||||
<TestimonialAboutCard
|
||||
tag="Our Story"
|
||||
title="Feeling Beautiful in Your Own Skin"
|
||||
description="At Veloura Intimates, we believe confidence starts from within. Our brand was born from a passion for self-love, creating pieces that honor your unique shape and spirit."
|
||||
subdescription="Every design is a celebration of the empowered woman."
|
||||
icon={Heart}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Veloura Intimates"
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
{
|
||||
label: "Bras",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Panties",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Sets",
|
||||
href: "/shop",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Veloura Intimates"
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [{ label: "Bras", href: "/shop" }, { label: "Panties", href: "/shop" }, { label: "Sets", href: "/shop" }]
|
||||
},
|
||||
{
|
||||
title: "About", items: [{ label: "Our Story", href: "/about" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
304
src/app/page.tsx
304
src/app/page.tsx
@@ -15,225 +15,105 @@ export default function LandingPage() {
|
||||
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">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Veloura Intimates"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Veloura Intimates"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Unleash Your Confidence"
|
||||
description="Luxury lingerie designed to make you feel irresistible."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop Now",
|
||||
href: "/shop",
|
||||
},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png?_wi=1",
|
||||
imageAlt: "Model in lace lingerie",
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png?_wi=2",
|
||||
imageAlt: "Model in lace lingerie",
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png?_wi=3",
|
||||
imageAlt: "Model in lace lingerie",
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png?_wi=4",
|
||||
imageAlt: "Model in lace lingerie",
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png?_wi=5",
|
||||
imageAlt: "Model in lace lingerie",
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png?_wi=6",
|
||||
imageAlt: "Model in lace lingerie",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
title="Unleash Your Confidence"
|
||||
description="Luxury lingerie designed to make you feel irresistible."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
buttons={[{ text: "Shop Now", href: "/shop" }]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png", imageAlt: "Model in lace lingerie" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png", imageAlt: "Model in lace lingerie" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png", imageAlt: "Model in lace lingerie" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png", imageAlt: "Model in lace lingerie" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png", imageAlt: "Model in lace lingerie" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-stunning-high-fashion-model-wearing-in-1774608047367-20023143.png", imageAlt: "Model in lace lingerie" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="lace-collection" data-section="lace-collection">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Ethereal Lace Set",
|
||||
price: "$85.00",
|
||||
variant: "Black",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-product-photography-of-a-black--1774608047529-7d193ab1.png",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Smoothing Silhouette",
|
||||
price: "$65.00",
|
||||
variant: "Nude",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-high-end-shapewear-piece-seamless-desi-1774608046568-779b6bc2.png",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Delicate Lace Thong",
|
||||
price: "$25.00",
|
||||
variant: "Blush",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/delicate-thong-and-panty-set-in-blush-pi-1774608047297-01fb52f0.png",
|
||||
},
|
||||
]}
|
||||
title="Our Signature Collections"
|
||||
description="Exquisite lace and premium silk sets."
|
||||
/>
|
||||
</div>
|
||||
<div id="lace-collection" data-section="lace-collection">
|
||||
<ProductCardFour
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Our Signature Collections"
|
||||
description="Exquisite lace and premium silk sets."
|
||||
products={[
|
||||
{ id: "1", name: "Ethereal Lace Set", price: "$85.00", variant: "Black", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-product-photography-of-a-black--1774608047529-7d193ab1.png" },
|
||||
{ id: "2", name: "Smoothing Silhouette", price: "$65.00", variant: "Nude", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/a-high-end-shapewear-piece-seamless-desi-1774608046568-779b6bc2.png" },
|
||||
{ id: "3", name: "Delicate Lace Thong", price: "$25.00", variant: "Blush", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/delicate-thong-and-panty-set-in-blush-pi-1774608047297-01fb52f0.png" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials-section" data-section="testimonials-section">
|
||||
<TestimonialCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sophia L.",
|
||||
role: "Client",
|
||||
company: "Veloura Fan",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Maria K.",
|
||||
role: "Client",
|
||||
company: "Veloura Fan",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Elena R.",
|
||||
role: "Client",
|
||||
company: "Veloura Fan",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Chloe B.",
|
||||
role: "Client",
|
||||
company: "Veloura Fan",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png?_wi=4",
|
||||
},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "10k+",
|
||||
label: "Confident Women",
|
||||
},
|
||||
{
|
||||
value: "98%",
|
||||
label: "Customer Satisfaction",
|
||||
},
|
||||
{
|
||||
value: "5+",
|
||||
label: "New Collections",
|
||||
},
|
||||
]}
|
||||
title="Empowered Women"
|
||||
description="Voices of the Veloura community."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials-section" data-section="testimonials-section">
|
||||
<TestimonialCardSixteen
|
||||
title="Empowered Women"
|
||||
description="Voices of the Veloura community."
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
kpiItems={[
|
||||
{ value: "10k+", label: "Confident Women" },
|
||||
{ value: "98%", label: "Customer Satisfaction" },
|
||||
{ value: "5+", label: "New Collections" }
|
||||
]}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sophia L.", role: "Client", company: "Veloura Fan", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png" },
|
||||
{ id: "2", name: "Maria K.", role: "Client", company: "Veloura Fan", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png" },
|
||||
{ id: "3", name: "Elena R.", role: "Client", company: "Veloura Fan", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png" },
|
||||
{ id: "4", name: "Chloe B.", role: "Client", company: "Veloura Fan", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/close-up-portrait-of-a-confident-woman-s-1774608046311-a423c174.png" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="newsletter" data-section="newsletter">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Join Us"
|
||||
title="Get 10% Off Your First Order"
|
||||
description="Sign up for exclusive access to new launches, limited edition sets, and style tips."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/soft-focus-abstract-luxury-textile-drape-1774608048805-9a8e7698.png"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="newsletter" data-section="newsletter">
|
||||
<ContactSplit
|
||||
tag="Join Us"
|
||||
title="Get 10% Off Your First Order"
|
||||
description="Sign up for exclusive access to new launches, limited edition sets, and style tips."
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/soft-focus-abstract-luxury-textile-drape-1774608048805-9a8e7698.png"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Veloura Intimates"
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
{
|
||||
label: "Bras",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Panties",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Sets",
|
||||
href: "/shop",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Veloura Intimates"
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [{ label: "Bras", href: "/shop" }, { label: "Panties", href: "/shop" }, { label: "Sets", href: "/shop" }]
|
||||
},
|
||||
{
|
||||
title: "About", items: [{ label: "Our Story", href: "/about" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user