From 32522a851bf0a68917a071998bf8396c0a87a46d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 22:13:01 +0000 Subject: [PATCH] Add src/app/product/[id]/page.tsx --- src/app/product/[id]/page.tsx | 54 +++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 src/app/product/[id]/page.tsx diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx new file mode 100644 index 0000000..219ecab --- /dev/null +++ b/src/app/product/[id]/page.tsx @@ -0,0 +1,54 @@ +"use client"; + +import { useParams } from "next/navigation"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Twitter, Instagram, Linkedin } from "lucide-react"; + +export default function ProductDetailPage() { + const { id } = useParams(); + + const handleCheckout = () => { + window.location.href = "https://www.shopier.com/checkout"; + }; + + return ( + + + +
+

Product ID: {id}

+

Explore the refined details of our premium product collection. Built with precision for your lifestyle.

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