Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c26a474f33 | |||
| 3d2c15977c | |||
| 91bf11b54b | |||
| d0e8da2c1e | |||
| c36234f422 | |||
| 8ab1a4ef71 | |||
| 99f00a2b6b | |||
| ff1f064d3f | |||
| e6a6645e05 |
1419
src/app/layout.tsx
1419
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -55,6 +55,10 @@ export default function HomePage() {
|
||||
},
|
||||
];
|
||||
|
||||
const handleProductClick = (productId: string, productName: string) => {
|
||||
window.open(`/materials/${productId}`, "_blank");
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -97,16 +101,16 @@ export default function HomePage() {
|
||||
<div id="featured" data-section="featured">
|
||||
<ProductCardOne
|
||||
title="Featured Materials"
|
||||
description="Trending and top-rated educational resources curated for you. Browse our most popular slides, presentations, and academic materials."
|
||||
description="Trending and top-rated educational resources. Hand-picked slides, presentations, and academic materials verified by our community."
|
||||
tag="Top Rated"
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user