Add src/app/cart/page.tsx
This commit is contained in:
13
src/app/cart/page.tsx
Normal file
13
src/app/cart/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
|
||||
|
||||
export default function CartPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarStyleCentered navItems={[{name: "Home", id: "/"}, {name: "Products", id: "/products"}, {name: "About", id: "/about"}, {name: "Login", id: "/login"}, {name: "Cart", id: "/cart"}, {name: "Contact", id: "/contact"}]} brandName="LUXE" />
|
||||
<ProductCatalog layout="page" products={[]} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user