Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-20 20:55:52 +00:00

View File

@@ -137,17 +137,17 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "p1", name: "Gourmet Burger", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/big-burger-with-steak-french-fries-with-herbs_114579-1923.jpg?_wi=2"},
id: "p1", name: "Gourmet Burger", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/big-burger-with-steak-french-fries-with-herbs_114579-1923.jpg?_wi=2", onProductClick: () => console.log('Burger selected') },
{
id: "p2", name: "Fresh Pasta", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/gold-fork-spoon-table_23-2147930776.jpg?_wi=2"},
id: "p2", name: "Fresh Pasta", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/gold-fork-spoon-table_23-2147930776.jpg?_wi=2", onProductClick: () => console.log('Pasta selected') },
{
id: "p3", name: "Artisan Salad", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-salad-with-various-sliced-vegetables_181624-44708.jpg"},
id: "p3", name: "Artisan Salad", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-salad-with-various-sliced-vegetables_181624-44708.jpg", onProductClick: () => console.log('Salad selected') },
{
id: "p4", name: "Handmade Pastry", price: "$8", imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-creamy-cakes-with-fresh-fruits-light-background_140725-132669.jpg"},
id: "p4", name: "Handmade Pastry", price: "$8", imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-creamy-cakes-with-fresh-fruits-light-background_140725-132669.jpg", onProductClick: () => console.log('Pastry selected') },
{
id: "p5", name: "Grilled Salmon", price: "$28", imageSrc: "http://img.b2bpic.net/free-photo/top-view-plate-with-carrots-other-healthy-food_23-2148381294.jpg"},
id: "p5", name: "Grilled Salmon", price: "$28", imageSrc: "http://img.b2bpic.net/free-photo/top-view-plate-with-carrots-other-healthy-food_23-2148381294.jpg", onProductClick: () => console.log('Salmon selected') },
{
id: "p6", name: "Rustic Sourdough", price: "$10", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-set-with-various-food_140725-1716.jpg"},
id: "p6", name: "Rustic Sourdough", price: "$10", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-set-with-various-food_140725-1716.jpg", onProductClick: () => console.log('Sourdough selected') },
]}
title="Today's Specials"
description="Handpicked favorites from our current seasonal menu."
@@ -257,4 +257,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}