From 30ddb51951e4194caba13f0b8e3bb0e3edafc0d7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 13:11:26 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index da56bf0..383438a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -62,9 +62,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} features={[ - { title: "Kaffee", description: "Vollmundig, lokal geröstet.", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cappuccino-with-beautiful-painting-foam_181624-8920.jpg" }, - { title: "Pâtisserie", description: "Handgemacht jeden Morgen.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-pancakes-with-fresh-raspberries-light-table-sweet-fruit-berry-dessert-cake-photo_140725-131675.jpg" }, - { title: "Ambiente", description: "Unser Hinterhof unter dem Feigenbaum.", imageSrc: "http://img.b2bpic.net/free-photo/rustic-patio-with-deck-furniture-vegetation_23-2150698362.jpg" }, + { title: "Kaffee", description: "Vollmundig, lokal geröstet.", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cappuccino-with-beautiful-painting-foam_181624-8920.jpg", imageAlt: "Kaffee" }, + { title: "Pâtisserie", description: "Handgemacht jeden Morgen.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-pancakes-with-fresh-raspberries-light-table-sweet-fruit-berry-dessert-cake-photo_140725-131675.jpg", imageAlt: "Pâtisserie" }, + { title: "Ambiente", description: "Unser Hinterhof unter dem Feigenbaum.", imageSrc: "http://img.b2bpic.net/free-photo/rustic-patio-with-deck-furniture-vegetation_23-2150698362.jpg", imageAlt: "Ambiente" }, ]} title="Handgemacht. Herzlich." description="Erlebe Qualität und Leidenschaft in jedem Bissen." @@ -115,10 +115,12 @@ export default function LandingPage() { description="Von der Bohne bis zum Genuss." features={[ { - title: "Auswahl", description: "Wähle dein Gebäck aus unserer täglichen Auslage.", imageSrc: "http://img.b2bpic.net/free-photo/croissant-baked_1150-11063.jpg", items: [{ label: "Bio-Mehl" }, { label: "Frische Früchte" }] + title: "Auswahl", description: "Wähle dein Gebäck aus unserer täglichen Auslage.", media: { imageSrc: "http://img.b2bpic.net/free-photo/croissant-baked_1150-11063.jpg", imageAlt: "Auswahl" }, + items: [{ label: "Bio-Mehl" }, { label: "Frische Früchte" }] }, { - title: "Genuss", description: "Finde deinen Lieblingsplatz an einem unserer gemütlichen Tische.", imageSrc: "http://img.b2bpic.net/free-photo/rustic-patio-with-deck-furniture-vegetation_23-2150698362.jpg", items: [{ label: "Täglich frische Auswahl" }, { label: "Französische Rezepte" }] + title: "Genuss", description: "Finde deinen Lieblingsplatz an einem unserer gemütlichen Tische.", media: { imageSrc: "http://img.b2bpic.net/free-photo/rustic-patio-with-deck-furniture-vegetation_23-2150698362.jpg", imageAlt: "Genuss" }, + items: [{ label: "Täglich frische Auswahl" }, { label: "Französische Rezepte" }] }, ]} /> -- 2.49.1