diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx new file mode 100644 index 0000000..69248c6 --- /dev/null +++ b/src/app/shop/[id]/page.tsx @@ -0,0 +1,29 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function ProductDetailPage({ params }: { params: { id: string } }) { + return ( + + + +
+

Product Detail: {params.id}

+

Product description, price details, and specification list will be displayed here.

+
+ +
+
+ ); +}