Update src/app/page.tsx
This commit is contained in:
@@ -91,9 +91,9 @@ export default function LandingPage() {
|
||||
description="Artisan coffee and tools for your sanctuary."
|
||||
buttons={[{ text: "Shop Now", href: "#" }]}
|
||||
products={[
|
||||
{ id: "1", brand: "D Yantra", name: "Signature Roast", price: "$22", rating: 5, reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/big-hermetic-metallic-package-filled-with-freshly-baked-roasted-coffee_346278-412.jpg" },
|
||||
{ id: "2", brand: "D Yantra", name: "Speciality Blend", price: "$24", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-coffee-cocktail-with-fresh-brown-coffee-seeds-brown-wooden-table-drink-seed-coffee_140725-27834.jpg?_wi=2" },
|
||||
{ id: "3", brand: "D Yantra", name: "Ceramic Cup", price: "$18", rating: 4, reviewCount: "42", imageSrc: "http://img.b2bpic.net/free-photo/trendy-coffee-shop-city_53876-30213.jpg?_wi=1" }
|
||||
{ id: "1", brand: "D Yantra", name: "Signature Roast", price: "$22", rating: 5, reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/big-hermetic-metallic-package-filled-with-freshly-baked-roasted-coffee_346278-412.jpg", onProductClick: () => window.location.href = '#buy' },
|
||||
{ id: "2", brand: "D Yantra", name: "Speciality Blend", price: "$24", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-coffee-cocktail-with-fresh-brown-coffee-seeds-brown-wooden-table-drink-seed-coffee_140725-27834.jpg?_wi=2", onProductClick: () => window.location.href = '#buy' },
|
||||
{ id: "3", brand: "D Yantra", name: "Ceramic Cup", price: "$18", rating: 4, reviewCount: "42", imageSrc: "http://img.b2bpic.net/free-photo/trendy-coffee-shop-city_53876-30213.jpg?_wi=1", onProductClick: () => window.location.href = '#buy' }
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
animationType="slide-up"
|
||||
@@ -146,4 +146,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user