Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a466226a3c | |||
| 073e60ae2e | |||
| 9ad6648128 |
@@ -133,17 +133,35 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1", name: "Classic Pepperoni", price: "$16.99", imageSrc: "http://img.b2bpic.net/free-photo/pepperoni-pizza-table_140725-5373.jpg", imageAlt: "Classic pepperoni pizza"},
|
||||
id: "p1", name: "Classic Pepperoni", price: "$16.99", imageSrc: "http://img.b2bpic.net/free-photo/pepperoni-pizza-table_140725-5373.jpg", imageAlt: "Classic pepperoni pizza", priceButtonProps: {
|
||||
text: "Add to Cart", onClick: () => console.log("Added Classic Pepperoni to cart")
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "p2", name: "Margherita Masterpiece", price: "$14.50", imageSrc: "http://img.b2bpic.net/free-photo/assortment-different-delicious-ingredients_23-2148882532.jpg", imageAlt: "Margherita pizza"},
|
||||
id: "p2", name: "Margherita Masterpiece", price: "$14.50", imageSrc: "http://img.b2bpic.net/free-photo/assortment-different-delicious-ingredients_23-2148882532.jpg", imageAlt: "Margherita pizza", priceButtonProps: {
|
||||
text: "Add to Cart", onClick: () => console.log("Added Margherita Masterpiece to cart")
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "p3", name: "Garden Veggie Delight", price: "$17.99", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-with-vegetables-arrangement_23-2148574222.jpg", imageAlt: "Garden veggie pizza"},
|
||||
id: "p3", name: "Garden Veggie Delight", price: "$17.99", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-with-vegetables-arrangement_23-2148574222.jpg", imageAlt: "Garden veggie pizza", priceButtonProps: {
|
||||
text: "Add to Cart", onClick: () => console.log("Added Garden Veggie Delight to cart")
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "p4", name: "Ultimate Meat Lovers", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/pizza-wooden-table-close-up_1232-1144.jpg", imageAlt: "Meat lovers pizza"},
|
||||
id: "p4", name: "Ultimate Meat Lovers", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/pizza-wooden-table-close-up_1232-1144.jpg", imageAlt: "Meat lovers pizza", priceButtonProps: {
|
||||
text: "Add to Cart", onClick: () => console.log("Added Ultimate Meat Lovers to cart")
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "p5", name: "BBQ Chicken Feast", price: "$18.75", imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-chopped-meat-extra-cheese_140725-6299.jpg", imageAlt: "BBQ Chicken pizza"},
|
||||
id: "p5", name: "BBQ Chicken Feast", price: "$18.75", imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-chopped-meat-extra-cheese_140725-6299.jpg", imageAlt: "BBQ Chicken pizza", priceButtonProps: {
|
||||
text: "Add to Cart", onClick: () => console.log("Added BBQ Chicken Feast to cart")
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "p6", name: "Tropical Hawaiian", price: "$15.99", imageSrc: "http://img.b2bpic.net/free-photo/hawaiian-pizza-with-pineappleham-cheese-black-slate-background_123827-20954.jpg", imageAlt: "Hawaiian pizza"},
|
||||
id: "p6", name: "Tropical Hawaiian", price: "$15.99", imageSrc: "http://img.b2bpic.net/free-photo/hawaiian-pizza-with-pineappleham-cheese-black-slate-background_123827-20954.jpg", imageAlt: "Hawaiian pizza", priceButtonProps: {
|
||||
text: "Add to Cart", onClick: () => console.log("Added Tropical Hawaiian to cart")
|
||||
}
|
||||
},
|
||||
]}
|
||||
title="Our Delicious Menu"
|
||||
description="Explore our wide selection of gourmet pizzas, sides, and beverages, all prepared with the finest ingredients."
|
||||
@@ -311,4 +329,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user