7 Commits

Author SHA1 Message Date
e232c75a79 Update src/app/page.tsx 2026-03-09 18:02:59 +00:00
2f1353725b Update src/app/layout.tsx 2026-03-09 18:02:58 +00:00
7d7469ea67 Merge version_6 into main
Merge version_6 into main
2026-03-09 17:58:35 +00:00
2c785edc88 Update src/app/page.tsx 2026-03-09 17:58:31 +00:00
896f3d7b44 Update src/app/layout.tsx 2026-03-09 17:58:30 +00:00
ee6c31b71e Switch to version 1: modified src/app/page.tsx 2026-03-09 17:57:22 +00:00
a2aeecb437 Merge version_5 into main
Merge version_5 into main
2026-03-09 17:53:14 +00:00
2 changed files with 49 additions and 1411 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -111,17 +111,53 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
products={[ products={[
{ {
id: "1", name: "Chicken Tikka Masala", price: "9,90€", imageSrc: "http://img.b2bpic.net/free-photo/healthy-gourmet-meal-with-chicken-meat-curry-generated-by-ai_188544-18147.jpg?_wi=1", imageAlt: "Chicken Tikka Masala"}, id: "1", name: "Chicken Tikka Masala", price: "9,90€", imageSrc: "http://img.b2bpic.net/free-photo/healthy-gourmet-meal-with-chicken-meat-curry-generated-by-ai_188544-18147.jpg?_wi=1", imageAlt: "Chicken Tikka Masala", onProductClick: () => {
const orderSection = document.getElementById('order');
if (orderSection) {
orderSection.scrollIntoView({ behavior: 'smooth' });
}
}
},
{ {
id: "2", name: "Samosa", price: "4,50€", imageSrc: "http://img.b2bpic.net/free-photo/deep-fried-samosas-dumplings-gourmet-appetizer-generated-by-ai_188544-13491.jpg", imageAlt: "Chrumkavé samosy"}, id: "2", name: "Samosa", price: "4,50€", imageSrc: "http://img.b2bpic.net/free-photo/deep-fried-samosas-dumplings-gourmet-appetizer-generated-by-ai_188544-13491.jpg", imageAlt: "Chrumkavé samosy", onProductClick: () => {
const orderSection = document.getElementById('order');
if (orderSection) {
orderSection.scrollIntoView({ behavior: 'smooth' });
}
}
},
{ {
id: "3", name: "Butter Chicken", price: "9,90€", imageSrc: "http://img.b2bpic.net/free-photo/healthy-gourmet-meal-with-chicken-meat-curry-generated-by-ai_188544-18147.jpg?_wi=2", imageAlt: "Butter Chicken"}, id: "3", name: "Butter Chicken", price: "9,90€", imageSrc: "http://img.b2bpic.net/free-photo/healthy-gourmet-meal-with-chicken-meat-curry-generated-by-ai_188544-18147.jpg?_wi=2", imageAlt: "Butter Chicken", onProductClick: () => {
const orderSection = document.getElementById('order');
if (orderSection) {
orderSection.scrollIntoView({ behavior: 'smooth' });
}
}
},
{ {
id: "4", name: "Dosa Wrap", price: "7,50€", imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-composition_23-2149086046.jpg", imageAlt: "Dosa Wrap"}, id: "4", name: "Dosa Wrap", price: "7,50€", imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-composition_23-2149086046.jpg", imageAlt: "Dosa Wrap", onProductClick: () => {
const orderSection = document.getElementById('order');
if (orderSection) {
orderSection.scrollIntoView({ behavior: 'smooth' });
}
}
},
{ {
id: "5", name: "Chicken Madras Curry", price: "10,50€", imageSrc: "http://img.b2bpic.net/free-photo/healthy-gourmet-meal-with-chicken-meat-curry-generated-by-ai_188544-18147.jpg?_wi=3", imageAlt: "Chicken Madras Curry"}, id: "5", name: "Chicken Madras Curry", price: "10,50€", imageSrc: "http://img.b2bpic.net/free-photo/healthy-gourmet-meal-with-chicken-meat-curry-generated-by-ai_188544-18147.jpg?_wi=3", imageAlt: "Chicken Madras Curry", onProductClick: () => {
const orderSection = document.getElementById('order');
if (orderSection) {
orderSection.scrollIntoView({ behavior: 'smooth' });
}
}
},
{ {
id: "6", name: "Dal Palak Shorba", price: "6,50€", imageSrc: "http://img.b2bpic.net/free-photo/bowl-lentil-soup-with-slice-bread-side_188544-24621.jpg", imageAlt: "Dal Palak Shorba"}, id: "6", name: "Dal Palak Shorba", price: "6,50€", imageSrc: "http://img.b2bpic.net/free-photo/bowl-lentil-soup-with-slice-bread-side_188544-24621.jpg", imageAlt: "Dal Palak Shorba", onProductClick: () => {
const orderSection = document.getElementById('order');
if (orderSection) {
orderSection.scrollIntoView({ behavior: 'smooth' });
}
}
},
]} ]}
/> />
</div> </div>