Update src/app/page.tsx

This commit is contained in:
2026-03-09 20:39:44 +00:00
parent 91bf11b54b
commit 3d2c15977c

View File

@@ -55,6 +55,10 @@ export default function HomePage() {
},
];
const handleProductClick = (productId: string, productName: string) => {
window.open(`/materials/${productId}`, "_blank");
};
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -102,11 +106,11 @@ export default function HomePage() {
tagIcon={Star}
products={[
{
id: "1", name: "Advanced Biology Slides 2025", price: "2,500 сум", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-english-lessons-kids-youtube-channel-art_23-2149252646.jpg?_wi=1", imageAlt: "Advanced Biology presentation slides"},
id: "1", name: "Advanced Biology Slides 2025", price: "2,500 сум", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-english-lessons-kids-youtube-channel-art_23-2149252646.jpg?_wi=1", imageAlt: "Advanced Biology presentation slides", onProductClick: () => 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() {
</div>
</ThemeProvider>
);
}
}