diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx new file mode 100644 index 0000000..28cc3fa --- /dev/null +++ b/src/app/product/[id]/page.tsx @@ -0,0 +1,32 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { useParams } from "next/navigation"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; + +export default function ProductDetailPage() { + return ( + + +
+
+ Product Image +
+
+

Premium Essential Piece

+

$295

+

Crafted with precision, designed for elegance. This piece is a wardrobe staple.

+ +
+
+
+ ); +} \ No newline at end of file