diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index 0f3f37d..1256f45 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -3,9 +3,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -// Placeholder imports for components that might not be in the registry but are implied by errors. -// These should be replaced with actual component imports if they existed in the project structure. - +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; @@ -37,6 +36,8 @@ export default function ProductDetailPage() { ], }; + const genericFeatureImage = "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BPSYpjXlk69WrIECU6nXnUWdiQ/abstract-glowing-circuit-board-design-in-1774389483110-201c3510.png"; + const features = [ { title: "Precision Engineering" }, { title: "Sapphire Crystal" }, @@ -79,32 +80,71 @@ export default function ProductDetailPage() {
-
- ({ + id: index + 1, + title: f.title, + description: `Focuses on the ${f.title.toLowerCase()}.`, + imageSrc: genericFeatureImage, + imageAlt: `${f.title} illustration`, + }))} + textboxLayout="default" + useInvertedBackground={false} />
- ({ + id: index + 1, + title: f.title, + description: `Specifics about the ${f.title.toLowerCase()}.`, + imageSrc: genericFeatureImage, + imageAlt: `${f.title} illustration`, + }))} + textboxLayout="default" + useInvertedBackground={false} />
- ({ + id: index + 1, + title: f.title, + description: `Information on the ${f.title.toLowerCase()}.`, + imageSrc: genericFeatureImage, + imageAlt: `${f.title} illustration`, + }))} + textboxLayout="default" + useInvertedBackground={false} />