diff --git a/src/app/page.tsx b/src/app/page.tsx index 7de065c..14d77c8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,6 +34,7 @@ export default function LandingPage() { { name: "Collections", id: "products" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, + { name: "Products", id: "/products" }, { name: "Shop", id: "featured" } ]} /> @@ -252,4 +253,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..7da234e --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,114 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Star } from 'lucide-react'; + +export default function ProductsPage() { + return ( + + + + + + + + ); +}