diff --git a/src/app/page.tsx b/src/app/page.tsx index dc5b5b6..824b1bf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -55,6 +55,10 @@ export default function HomePage() { }, ]; + const handleProductClick = (productId: string, productName: string) => { + window.open(`/materials/${productId}`, "_blank"); + }; + return ( handleProductClick("1", "Advanced Biology Slides 2025")}, { - id: "2", name: "Business Strategy Presentation", price: "3,000 сум", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-business-workshop-geometric-facebook-post_23-2149406379.jpg?_wi=1", imageAlt: "Business strategy presentation materials"}, + id: "2", name: "Business Strategy Presentation", price: "3,000 сум", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-business-workshop-geometric-facebook-post_23-2149406379.jpg?_wi=1", imageAlt: "Business strategy presentation materials", onProductClick: () => handleProductClick("2", "Business Strategy Presentation")}, { - id: "3", name: "Complete Economics Coursework", price: "4,500 сум", imageSrc: "http://img.b2bpic.net/free-photo/technology-desk-concept-with-slate-bottom_23-2147731433.jpg?_wi=1", imageAlt: "Economics coursework complete package"}, + id: "3", name: "Complete Economics Coursework", price: "4,500 сум", imageSrc: "http://img.b2bpic.net/free-photo/technology-desk-concept-with-slate-bottom_23-2147731433.jpg?_wi=1", imageAlt: "Economics coursework complete package", onProductClick: () => handleProductClick("3", "Complete Economics Coursework")}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -217,4 +221,4 @@ export default function HomePage() { ); -} +} \ No newline at end of file