From 4e484a5ca86ad3666b0df96091bd26f8ad9705a3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 11:29:14 +0000 Subject: [PATCH] Update src/app/product/[id]/page.tsx --- src/app/product/[id]/page.tsx | 283 ++++++++++++---------------------- 1 file changed, 99 insertions(+), 184 deletions(-) diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index 4522949..3bfcf5a 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -2,200 +2,115 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import TextAbout from '@/components/sections/about/TextAbout'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; -export default function LandingPage() { +export default function ProductDetailsPage({ params }: { params: { id: string } }) { + const navItems = [ + { + name: "Home", id: "/" + }, + { + name: "Shop", id: "/shop" + }, + { + name: "About Us", id: "/about" + }, + { + name: "Contact", id: "/contact" + } + ]; + + // Using the theme props from the provided /about/page.tsx as a consistent baseline return ( - + -
- -
+
+ + {/* Moved description to inline JSX as 'description' prop does not exist on TextAboutProps */} +

+ Experience the epitome of elegance with our meticulously crafted black dress. Made from premium silk, it offers a timeless silhouette and unparalleled comfort. Available in multiple sizes (XS, S, M, L, XL) and colors (Black, Gold, White), designed to flatter every figure. Features intricate gold embroidery and a subtle back slit for refined appeal. +

+
- + - +
); -- 2.49.1