Update src/app/page.tsx

This commit is contained in:
2026-03-27 10:53:50 +00:00
parent c0d3c6e50b
commit 121c79251f

View File

@@ -24,22 +24,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sweet Temptation"
/>
@@ -47,75 +35,33 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitKpi
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Unleash Your Confidence"
description="Luxury lingerie designed to make you feel irresistible."
kpis={[
{
value: "100%",
label: "Confidence Boost",
},
{
value: "Soft",
label: "Lace Touch",
},
{
value: "Free",
label: "Shipping Over $75",
},
{ value: "100%", label: "Confidence Boost" },
{ value: "Soft", label: "Lace Touch" },
{ value: "Free", label: "Shipping Over $75" },
]}
enableKpiAnimation={true}
buttons={[
{
text: "Shop Now",
href: "/shop",
},
]}
buttons={[{ text: "Shop Now", href: "/shop" }]}
imageSrc="https://pixabay.com/get/g53fa748f2aed6124de09c11e5a96410794d1e0cb16765abe94501a730b0fb7a5ca643028dd89493fc949f1cb73f4b08498ed02db548984231221f1bcaac754d3_1280.jpg"
mediaAnimation="slide-up"
videoSrc="https://example.com/hero-video.mp4"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://pixabay.com/get/gf9c1459a4c3ac7d6bae774870e12933ea797676b097973cd1b743a7c6b097230cec25f3a1f6a7941d30b81ebb1dbab90056058f65437d4e531269a697b801b4a_1280.jpg?_wi=1"
imageSrc="https://pixabay.com/get/gf9c1459a4c3ac7d6bae774870e12933ea797676b097973cd1b743a7c6b097230cec25f3a1f6a7941d30b81ebb1dbab90056058f65437d4e531269a697b801b4a_1280.jpg"
columns={[
{
title: "Shop",
items: [
{
label: "Sets",
href: "/shop",
},
{
label: "Shapewear",
href: "/shop",
},
],
},
{
title: "Company",
items: [
{
label: "Our Story",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ title: "Shop", items: [{ label: "Sets", href: "/shop" }, { label: "Shapewear", href: "/shop" }] },
{ title: "Company", items: [{ label: "Our Story", href: "/about" }, { label: "Contact", href: "/contact" }] },
]}
logoText="Sweet Temptation"
copyrightText="© 2025 Sweet Temptation Intimates"
videoSrc="https://example.com/footer-video.mp4?_wi=1"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}