Update src/app/shop/page.tsx

This commit is contained in:
2026-03-27 12:21:49 +00:00
parent 6a4bdfe6fe
commit fd829c6cf4

View File

@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
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"
button={{ text: "Contact Us", href: "/contact" }}
/>
</div>
@@ -50,26 +39,12 @@ export default function LandingPage() {
<ProductCardThree
textboxLayout="split"
gridVariant="bento-grid"
animationType="slide-up"
useInvertedBackground={false}
products={[
{
id: "1",
name: "Midnight Lace Set",
price: "$55",
imageSrc: "https://pixabay.com/get/g40845641537a120091bbad3c2c0566a4f1fb9f7fb005600370bb5050d10eea3536f5617d7b0961172d56e255399b4e97325715375439775edda216c781070a0d_1280.jpg?_wi=3",
},
{
id: "2",
name: "Blush Silk Thong",
price: "$25",
imageSrc: "https://pixabay.com/get/g107f66df8b6b9149e40bedbe6dabd693092c0ed975bce96c8d55e0da8c7b93486650bbfcc351e95ddaec151f5be95fbbfaffdc1be91c2f03efb45cef1c77e1b1_1280.jpg?_wi=2",
},
{
id: "3",
name: "Sculpting Body Shaper",
price: "$65",
imageSrc: "https://pixabay.com/get/g513375b9e42cd343de3474daaa178852bab8b71f727ecc4f33e1e5a483abd809774ec0c3511c3f125c8cbd31d8675c3fc3b3bf938e6677c6fb018427d75a530f_1280.jpg?_wi=2",
},
{ id: "1", name: "Midnight Lace Set", price: "$55", imageSrc: "https://pixabay.com/get/g40845641537a120091bbad3c2c0566a4f1fb9f7fb005600370bb5050d10eea3536f5617d7b0961172d56e255399b4e97325715375439775edda216c781070a0d_1280.jpg" },
{ id: "2", name: "Blush Silk Thong", price: "$25", imageSrc: "https://pixabay.com/get/g107f66df8b6b9149e40bedbe6dabd693092c0ed975bce96c8d55e0da8c7b93486650bbfcc351e95ddaec151f5be95fbbfaffdc1be91c2f03efb45cef1c77e1b1_1280.jpg" },
{ id: "3", name: "Sculpting Body Shaper", price: "$65", imageSrc: "https://pixabay.com/get/g513375b9e42cd343de3474daaa178852bab8b71f727ecc4f33e1e5a483abd809774ec0c3511c3f125c8cbd31d8675c3fc3b3bf938e6677c6fb018427d75a530f_1280.jpg" }
]}
title="Our Collections"
description="Exquisite lace, supportive shapewear, and delicate everyday pieces."
@@ -85,15 +60,7 @@ export default function LandingPage() {
title="More Arrivals"
description="Explore our latest seasonal items."
products={[
{
id: "a1",
brand: "Sweet Temptation",
name: "Classic Black Bra",
price: "$45",
rating: 5,
reviewCount: "12",
imageSrc: "https://pixabay.com/get/g40845641537a120091bbad3c2c0566a4f1fb9f7fb005600370bb5050d10eea3536f5617d7b0961172d56e255399b4e97325715375439775edda216c781070a0d_1280.jpg?_wi=4",
},
{ id: "a1", brand: "Sweet Temptation", name: "Classic Black Bra", price: "$45", rating: 5, reviewCount: "12", imageSrc: "https://pixabay.com/get/g40845641537a120091bbad3c2c0566a4f1fb9f7fb005600370bb5050d10eea3536f5617d7b0961172d56e255399b4e97325715375439775edda216c781070a0d_1280.jpg" }
]}
/>
</div>
@@ -101,42 +68,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Sweet Temptation"
columns={[
{
title: "Shop",
items: [
{
label: "Sets",
href: "#",
},
{
label: "Bras",
href: "#",
},
{
label: "Panties",
href: "#",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "FAQ",
href: "#",
},
{
label: "Contact",
href: "/contact",
},
],
},
]}
columns={[{ title: "Shop", items: [{ label: "Sets", href: "#" }, { label: "Bras", href: "#" }, { label: "Panties", href: "#" }] }, { title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "FAQ", href: "#" }, { label: "Contact", href: "/contact" }] }]}
/>
</div>
</ReactLenis>