Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-27 13:36:33 +00:00

View File

@@ -23,13 +23,15 @@ export default function ProductDetailTemplate() {
headingFontWeight="light"
>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/#products" },
]}
brandName="LUXE SELECT"
/>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/#products" },
]}
brandName="LUXE SELECT"
/>
</div>
<main className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<div className="grid grid-cols-1 md:grid-cols-2 gap-12">
@@ -50,13 +52,16 @@ export default function ProductDetailTemplate() {
</div>
</main>
<FooterSimple
columns={[
{ title: "Shop", items: [{ label: "All Products", href: "/#products" }] },
{ title: "Support", items: [{ label: "FAQ", href: "/#faq" }] },
]}
bottomLeftText="© 2024 Luxe Select Inc."
/>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Shop", items: [{ label: "All Products", href: "/#products" }] },
{ title: "Support", items: [{ label: "FAQ", href: "/#faq" }] },
]}
bottomLeftText="© 2024 Luxe Select Inc."
bottomRightText="All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);