Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-27 10:54:24 +00:00

View File

@@ -21,44 +21,45 @@ export default function ShopPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sweet Temptation"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sweet Temptation"
/>
</div>
<div id="shop-grid" data-section="shop-grid">
<ProductCardTwo
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
products={[
{ id: "p1", brand: "Sweet Temptation", name: "Midnight Lace Set", price: "$45.00", rating: 5, reviewCount: "12", imageSrc: "https://pixabay.com/get/ga372394b15e3d48300ef9d5f75825653b4aa5f97c487fd7a1ba27a7d5310d145d382ed284bd62035d24b756b03a4125228e2bf2bbca2628e6c5ff1fee4102a8b_1280.jpg" },
{ id: "p2", brand: "Sweet Temptation", name: "Blush Silk Panty", price: "$12.00", rating: 4, reviewCount: "8", imageSrc: "https://pixabay.com/get/gbe719ac16c836d454b8b7afb36427b0605df987d5b1c168de68660de3d1c25102be2f3a678f9abb4d928fc0a453de1a9ab4d560489867115c3b7146862aad643_1280.jpg" },
{ id: "p3", brand: "Sweet Temptation", name: "Sculpt Shapewear", price: "$55.00", rating: 5, reviewCount: "24", imageSrc: "https://pixabay.com/get/g774f67d4a7a2770e516f8b22062b0b0f5fc56f33869d5e8cf2b718b80c64494856677b332ae642341b1707be9ba75f13c3010edb78fa59ff35fe4c537d221347_1280.jpg" },
]}
title="Shop Our Collections"
description="Explore our curated range of delicate lace, supportive shapewear, and signature sets."
/>
</div>
<div id="shop-grid" data-section="shop-grid">
<ProductCardTwo
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{ id: "p1", brand: "Sweet Temptation", name: "Midnight Lace Set", price: "$45.00", rating: 5, reviewCount: "12", imageSrc: "https://pixabay.com/get/ga372394b15e3d48300ef9d5f75825653b4aa5f97c487fd7a1ba27a7d5310d145d382ed284bd62035d24b756b03a4125228e2bf2bbca2628e6c5ff1fee4102a8b_1280.jpg" },
{ id: "p2", brand: "Sweet Temptation", name: "Blush Silk Panty", price: "$12.00", rating: 4, reviewCount: "8", imageSrc: "https://pixabay.com/get/gbe719ac16c836d454b8b7afb36427b0605df987d5b1c168de68660de3d1c25102be2f3a678f9abb4d928fc0a453de1a9ab4d560489867115c3b7146862aad643_1280.jpg" },
{ id: "p3", brand: "Sweet Temptation", name: "Sculpt Shapewear", price: "$55.00", rating: 5, reviewCount: "24", imageSrc: "https://pixabay.com/get/g774f67d4a7a2770e516f8b22062b0b0f5fc56f33869d5e8cf2b718b80c64494856677b332ae642341b1707be9ba75f13c3010edb78fa59ff35fe4c537d221347_1280.jpg" },
]}
title="Shop Our Collections"
description="Explore our curated range of delicate lace, supportive shapewear, and signature sets."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
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" }] },
]}
logoText="Sweet Temptation"
copyrightText="© 2025 Sweet Temptation Intimates"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
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" }] },
]}
logoText="Sweet Temptation"
copyrightText="© 2025 Sweet Temptation Intimates"
/>
</div>
</ReactLenis>
</ThemeProvider>
);