4 Commits

Author SHA1 Message Date
c26a474f33 Merge version_3 into main
Merge version_3 into main
2026-03-09 20:39:48 +00:00
3d2c15977c Update src/app/page.tsx 2026-03-09 20:39:44 +00:00
91bf11b54b Update src/app/layout.tsx 2026-03-09 20:39:44 +00:00
d0e8da2c1e Merge version_2 into main
Merge version_2 into main
2026-03-09 20:38:03 +00:00
2 changed files with 9 additions and 5 deletions

View File

@@ -1384,4 +1384,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

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>
);
}
}