Merge version_2 into main #6

Merged
bender merged 1 commits from version_2 into main 2026-04-23 01:03:13 +00:00

View File

@@ -38,16 +38,21 @@ export default function ShopPage() {
textboxLayout="default"
useInvertedBackground={false}
title="Our Collection"
description="Explore our curated selection of premium products."
products={[
{ id: "p1", name: "Classic Watch", price: "$450", imageSrc: "http://img.b2bpic.net/free-photo/close-up-clock-with-time-change_23-2149241141.jpg" },
{ id: "p2", name: "Leather Tote", price: "$320", imageSrc: "http://img.b2bpic.net/free-photo/view-women-bag-stuff_93675-131548.jpg" },
{ id: "p3", name: "Silk Scarf", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/colorful-silk-scarves_23-2148796853.jpg" }
{ id: "p2", name: "Leather Tote", price: "$320", imageSrc: "http://img.b2bpic.net/view-women-bag-stuff_93675-131548.jpg" },
{ id: "p3", name: "Silk Scarf", price: "$150", imageSrc: "http://img.b2bpic.net/colorful-silk-scarves_23-2148796853.jpg" }
]}
/>
</div>
</main>
<div id="footer" data-section="footer">
<FooterSimple columns={[{ title: "Shop", items: [{ label: "Home", href: "/" }, { label: "Shop", href: "/shop" }] }]} />
<FooterSimple
columns={[{ title: "Shop", items: [{ label: "Home", href: "/" }, { label: "Shop", href: "/shop" }] }]}
bottomLeftText="© 2025 LuxeShop"
bottomRightText="All rights reserved."
/>
</div>
</ThemeProvider>
);