Update src/app/about/page.tsx

This commit is contained in:
2026-03-27 10:41:46 +00:00
parent 2218c4a31a
commit 2e17ac48a1

View File

@@ -7,96 +7,58 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { Heart } from "lucide-react"; import { Heart } from "lucide-react";
export default function LandingPage() { export default function AboutPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="rounded" borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "About", id: "/about" },
id: "/", { name: "Contact", id: "/contact" }
}, ]}
{ brandName="Veloura Intimates"
name: "Shop", />
id: "/shop", </div>
},
{
name: "About Us",
id: "/about",
},
{
name: "FAQ",
id: "/faq",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Veloura Intimates"
/>
</div>
<div id="about-story" data-section="about-story"> <div id="about-story" data-section="about-story">
<TestimonialAboutCard <TestimonialAboutCard
useInvertedBackground={true} tag="Our Story"
tag="Our Story" title="Feeling Beautiful in Your Own Skin"
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."
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."
subdescription="Every design is a celebration of the empowered woman." icon={Heart}
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"
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"
mediaAnimation="blur-reveal" useInvertedBackground={true}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="Veloura Intimates" logoText="Veloura Intimates"
columns={[ columns={[
{ {
title: "Shop", title: "Shop", items: [{ label: "Bras", href: "/shop" }, { label: "Panties", href: "/shop" }, { label: "Sets", href: "/shop" }]
items: [ },
{ {
label: "Bras", title: "About", items: [{ label: "Our Story", href: "/about" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }]
href: "/shop", }
}, ]}
{ />
label: "Panties", </div>
href: "/shop",
},
{
label: "Sets",
href: "/shop",
},
],
},
{
title: "About",
items: [
{
label: "Our Story",
href: "/about",
},
{
label: "FAQ",
href: "/faq",
},
{
label: "Contact",
href: "/contact",
},
],
},
]}
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );