Add src/app/products/page.tsx

This commit is contained in:
2026-03-28 04:56:19 +00:00
parent 9be2cab580
commit e9f690f3f1

32
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,32 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
export default function ProductListingPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Cart", id: "/cart" },
{ name: "Checkout", id: "/checkout" }
]}
brandName="E-Store"
/>
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
title="All Products"
description="Browse our full collection."
products={[]}
/>
</ReactLenis>
</ThemeProvider>
);
}