Update src/app/products/page.tsx

This commit is contained in:
2026-05-16 21:42:01 +00:00
parent b237d2b8e7
commit f85a27f010

View File

@@ -1,10 +1,8 @@
"use client"
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function ProductsPage() {
return (
@@ -20,31 +18,27 @@ export default function ProductsPage() {
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="UMBRA"
navItems={[
{ name: "Home", id: "/" },
{ name: "Collection", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" }
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Contact", href: "/contact" }}
/>
<div className="pt-32 pb-20">
<ProductCardFour
title="All Products"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<FooterLogoEmphasis
logoText="UMBRA"
columns={[]}
/>
</ReactLenis>
</div>
<div id="products" data-section="products" className="pt-32 pb-20">
<ProductCardFour
title="All Products"
description="Discover our curated collection."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
</ThemeProvider>
);
}