Update src/app/about/page.tsx

This commit is contained in:
2026-03-27 10:48:50 +00:00
parent 7721334a2b
commit 7a41f181f8

View File

@@ -7,104 +7,60 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SplitAbout from '@/components/sections/about/SplitAbout';
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">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Sweet Temptation"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="Empowering You From Within"
description="Sweet Temptation was founded on the belief that lingerie is not just apparel, but a foundation for confidence. We create intimate pieces that celebrate the human form with grace, comfort, and luxury."
bulletPoints={[
{
title: "Premium Materials",
description: "Sourced only from the finest lace and silk artisans.",
},
{
title: "Inclusive Fit",
description: "Designed for all shapes to feel irresistible.",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/an-intimate-artistic-detail-shot-of-high-1774608478847-39d0fd21.png"
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardFourteen
useInvertedBackground={false}
title="Our Impact"
tag="Milestones"
metrics={[
{
id: "1",
value: "10k+",
description: "Satisfied Customers",
},
{
id: "2",
value: "50+",
description: "Unique Designs",
},
{
id: "3",
value: "99%",
description: "Confidence Score",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Shop Now",
href: "/shop",
},
],
},
]}
logoText="Sweet Temptation"
copyrightText="© 2025 Sweet Temptation | Premium Lingerie for Confidence"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="Sweet Temptation"
button={{ text: "Contact Us", href: "/contact" }}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="Empowering You From Within"
description="Sweet Temptation was founded on the belief that lingerie is not just apparel, but a foundation for confidence. We create intimate pieces that celebrate the human form with grace, comfort, and luxury."
bulletPoints={[
{ title: "Premium Materials", description: "Sourced only from the finest lace and silk artisans." },
{ title: "Inclusive Fit", description: "Designed for all shapes to feel irresistible." }
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/an-intimate-artistic-detail-shot-of-high-1774608478847-39d0fd21.png"
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardFourteen
useInvertedBackground={false}
title="Our Impact"
tag="Milestones"
metrics={[
{ id: "1", value: "10k+", description: "Satisfied Customers" },
{ id: "2", value: "50+", description: "Unique Designs" },
{ id: "3", value: "99%", description: "Confidence Score" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Shop Now", href: "/shop" }] }]}
logoText="Sweet Temptation"
copyrightText="© 2025 Sweet Temptation | Premium Lingerie for Confidence"
/>
</div>
</ReactLenis>
</ThemeProvider>
);