From af2e24b136dce2cba01bc956c5e85def16123dff Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 01:36:54 +0000 Subject: [PATCH] Add src/app/products/[id]/page.tsx --- src/app/products/[id]/page.tsx | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/app/products/[id]/page.tsx diff --git a/src/app/products/[id]/page.tsx b/src/app/products/[id]/page.tsx new file mode 100644 index 0000000..b6bd0bd --- /dev/null +++ b/src/app/products/[id]/page.tsx @@ -0,0 +1,33 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { useParams } from "next/navigation"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Instagram, Twitter } from "lucide-react"; + +export default function ProductDetail() { + const { id } = useParams(); + return ( + + +
+

Product Details: {id}

+

This is the detail page for product {id}. Here you can see specific technical specs, high-resolution imagery, and a direct checkout integration.

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