Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c26a474f33 | |||
| 3d2c15977c | |||
| 91bf11b54b | |||
| d0e8da2c1e |
@@ -55,6 +55,10 @@ export default function HomePage() {
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const handleProductClick = (productId: string, productName: string) => {
|
||||||
|
window.open(`/materials/${productId}`, "_blank");
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-bubble"
|
defaultButtonVariant="hover-bubble"
|
||||||
@@ -102,11 +106,11 @@ export default function HomePage() {
|
|||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
products={[
|
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"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user