Update src/app/page.tsx

This commit is contained in:
2026-03-03 16:23:41 +00:00
parent d124ed12b0
commit bb6a41d04a

View File

@@ -69,13 +69,16 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1", name: "Classic Cheeseburger", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-burger_23-2149342861.jpg?_wi=1", imageAlt: "Classic cheeseburger", initialQuantity: 1
id: "1", name: "Classic Cheeseburger", price: "$8.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARSi2FifFdQBgGczVkYKsRxFoV/uploaded-1772554984955-x2nggqqj.jpg", imageAlt: "Classic cheeseburger", initialQuantity: 1
},
{
id: "2", name: "Golden Fries", price: "$3.99", imageSrc: "http://img.b2bpic.net/free-photo/fried-potatoes-french-fries-wooden-table_123827-26691.jpg?_wi=1", imageAlt: "Crispy golden fries", initialQuantity: 1
id: "2", name: "Golden Fries", price: "$3.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARSi2FifFdQBgGczVkYKsRxFoV/uploaded-1772554984956-lj70zz7m.jpg", imageAlt: "Crispy golden fries", initialQuantity: 1
},
{
id: "3", name: "Crispy Fried Chicken", price: "$9.99", imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-cola-dining-table_1373-74.jpg", imageAlt: "Fried chicken plate", initialQuantity: 1
id: "3", name: "Crispy Fried Chicken", price: "$9.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARSi2FifFdQBgGczVkYKsRxFoV/uploaded-1772554984956-v0254196.jpg", imageAlt: "Fried chicken plate", initialQuantity: 1
},
{
id: "4", name: "Delicious Pizza", price: "$11.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARSi2FifFdQBgGczVkYKsRxFoV/uploaded-1772554984956-iaxty2ut.jpg", imageAlt: "Delicious pizza", initialQuantity: 1
}
]}
gridVariant="three-columns-all-equal-width"
@@ -167,4 +170,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}