From 3b35bf16e22d8a5c8a6ce30624cd18a2d7ca8be6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 19:49:36 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 115 ++++------------------------------------- 1 file changed, 9 insertions(+), 106 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a2843cf..3325ec1 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,10 +2,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import FooterBase from '@/components/sections/footer/FooterBase'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; export default function LandingPage() { return ( @@ -25,24 +25,13 @@ export default function LandingPage() { @@ -50,101 +39,15 @@ export default function LandingPage() { -
- -
- -- 2.49.1 From 3b7e3737ce049e4483161e28fd6cc46e4cb195c5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 19:49:37 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 89 ++++------------------------------------ 1 file changed, 8 insertions(+), 81 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 54100b7..9da3b22 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBase from '@/components/sections/footer/FooterBase'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; export default function LandingPage() { @@ -25,101 +24,29 @@ export default function LandingPage() {
-
- -
-
-- 2.49.1 From ae47d62b187ac1f4ab2274d914db7b64e75b0604 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 19:49:37 +0000 Subject: [PATCH 3/4] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 130 ++++-------------------------------------- 1 file changed, 10 insertions(+), 120 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 984ab29..90ccb5c 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -3,7 +3,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FooterBase from '@/components/sections/footer/FooterBase'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; @@ -25,24 +24,13 @@ export default function LandingPage() { @@ -53,116 +41,18 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "m1", - name: "Pizza Margherita", - price: "9,90 €", - variant: "Pizza", - imageSrc: "http://img.b2bpic.net/free-photo/italian-fast-food-pizza-with-full-vegetables-greenery_114579-1960.jpg", - }, - { - id: "m2", - name: "Pasta Carbonara", - price: "10,90 €", - variant: "Pasta", - imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-peppers-olives-cheese_501050-832.jpg", - }, - { - id: "m3", - name: "Cheeseburger", - price: "11,90 €", - variant: "Burger", - imageSrc: "http://img.b2bpic.net/free-photo/vegetarian-pizza-with-zucchini-tomato-peppers-mushrooms_123827-22011.jpg", - }, - { - id: "m4", - name: "Gemischter Salat", - price: "7,50 €", - variant: "Salate", - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-enjoying-delicious-pizza_23-2149028530.jpg", - }, - { - id: "m5", - name: "Tiramisu", - price: "6,50 €", - variant: "Dessert", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-wooden-cutting-board-left-side-isolated-dark-surface-with-free-space-close-up-shot_179666-42209.jpg", - }, - { - id: "m6", - name: "Spezi 0,5l", - price: "3,50 €", - variant: "Getränke", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-pizza_23-2151946406.jpg", - }, + { id: "m1", name: "Pizza Margherita", price: "9,90 €", variant: "Pizza", imageSrc: "http://img.b2bpic.net/free-photo/italian-fast-food-pizza-with-full-vegetables-greenery_114579-1960.jpg" }, + { id: "m2", name: "Pasta Carbonara", price: "10,90 €", variant: "Pasta", imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-peppers-olives-cheese_501050-832.jpg" }, + { id: "m3", name: "Cheeseburger", price: "11,90 €", variant: "Burger", imageSrc: "http://img.b2bpic.net/free-photo/vegetarian-pizza-with-zucchini-tomato-peppers-mushrooms_123827-22011.jpg" } ]} title="Unsere Speisekarte" - description="Wähle aus unseren köstlichen italienischen Spezialitäten." - /> - - -
-
-- 2.49.1 From 864261ada4fce4f45e9d5620483046bfac3466c7 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 19:49:38 +0000 Subject: [PATCH 4/4] Update src/app/page.tsx --- src/app/page.tsx | 268 ++++------------------------------------------- 1 file changed, 20 insertions(+), 248 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 95235e3..b65f019 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,67 +29,24 @@ export default function LandingPage() {
@@ -102,47 +59,13 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Steinofen-gebacken", - description: "Traditionell für den perfekten knusprigen Boden.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-fresh-cheese_23-2150096953.jpg?_wi=1", - imageAlt: "margherita pizza rustic table top view", - }, - phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-delicious-pizza-with-fresh-red-tomatoes-dark-salad-food-dough-cake-color-photo-fast-food_140725-160918.jpg", - imageAlt: "salami pizza delicious italian slice", - }, - imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134252.jpg?_wi=2", - imageAlt: "margherita pizza rustic table top view", + title: "Steinofen-gebacken", description: "Traditionell für den perfekten knusprigen Boden.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-fresh-cheese_23-2150096953.jpg", imageAlt: "margherita pizza" }, + phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-delicious-pizza-with-fresh-red-tomatoes-dark-salad-food-dough-cake-color-photo-fast-food_140725-160918.jpg", imageAlt: "salami pizza" }, }, { - title: "Täglich frische Zutaten", - description: "Qualität, die man schmeckt.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/side-view-pizza-with-tomatoes-with-eggs-glass-milk-flour-table_140725-13969.jpg", - imageAlt: "gourmet specialty pizza melted cheese", - }, - phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-cooking-pizza-together_23-2150283011.jpg", - imageAlt: "rustic vegetable pizza fresh ingredients", - }, - imageSrc: "http://img.b2bpic.net/free-photo/three-girl-friends-having-pizza-bar_1303-19887.jpg?_wi=1", - imageAlt: "margherita pizza rustic table top view", - }, - { - title: "Schnelle Lieferung", - description: "Heiß und frisch direkt zu Ihnen nach Hause.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-cutter-arrangement_23-2148574226.jpg", - imageAlt: "margherita pizza rustic table top view", - }, - phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-pizza-tray_23-2149235624.jpg", - imageAlt: "salami pizza delicious italian slice", - }, - imageSrc: "http://img.b2bpic.net/free-photo/smiley-couple-sharing-fast-food_329181-20757.jpg?_wi=1", - imageAlt: "margherita pizza rustic table top view", - }, + title: "Täglich frische Zutaten", description: "Qualität, die man schmeckt.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/side-view-pizza-with-tomatoes-with-eggs-glass-milk-flour-table_140725-13969.jpg", imageAlt: "gourmet pizza" }, + phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-cooking-pizza-together_23-2150283011.jpg", imageAlt: "vegetable pizza" }, + } ]} showStepNumbers={true} title="Warum Pizzeria Amico?" @@ -157,48 +80,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={true} products={[ - { - id: "p1", - name: "Margherita Classica", - price: "9,90 €", - variant: "Klassiker", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-with-tomatoes-oil_23-2148753738.jpg", - }, - { - id: "p2", - name: "Salami Amico", - price: "11,90 €", - variant: "Würziger Genuss", - imageSrc: "http://img.b2bpic.net/free-photo/pizza-slices-bundled-small-tray-marble_114579-44946.jpg", - }, - { - id: "p3", - name: "Mafiosi Special", - price: "13,90 €", - variant: "Scharf & Deftig", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-mushroom-pizza-delicious-dough-with-fresh-vegetables-dark-surface-dough-meal-food-italian-bake_140725-102076.jpg", - }, - { - id: "p4", - name: "Farmer's Pizza", - price: "12,90 €", - variant: "Vegetarisch", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-pizza_23-2149298075.jpg", - }, - { - id: "p5", - name: "Quattro Formaggi", - price: "12,50 €", - variant: "Käse pur", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-blackboard_23-2148925187.jpg", - }, - { - id: "p6", - name: "Prosciutto e Funghi", - price: "11,50 €", - variant: "Traditionell", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-italian-pizza-with-various-ingredients_181624-59426.jpg", - }, + { id: "p1", name: "Margherita Classica", price: "9,90 €", variant: "Klassiker", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-with-tomatoes-oil_23-2148753738.jpg" }, + { id: "p2", name: "Salami Amico", price: "11,90 €", variant: "Würziger Genuss", imageSrc: "http://img.b2bpic.net/free-photo/pizza-slices-bundled-small-tray-marble_114579-44946.jpg" }, + { id: "p3", name: "Mafiosi Special", price: "13,90 €", variant: "Scharf & Deftig", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-mushroom-pizza-delicious-dough-with-fresh-vegetables-dark-surface-dough-meal-food-italian-bake_140725-102076.jpg" } ]} title="Unsere Signature-Pizzen" description="Entdecke unsere beliebtesten Kreationen." @@ -211,130 +95,18 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "t1", - name: "Sarah Müller", - handle: "@sarah_m", - testimonial: "Exzellente Pizza und sehr freundliches Personal.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/three-girl-friends-having-pizza-bar_1303-19887.jpg?_wi=2", - }, - { - id: "t2", - name: "Markus Weber", - handle: "@markus_w", - testimonial: "Perfekte Pizza, tolles Preis-Leistungs-Verhältnis.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiley-couple-sharing-fast-food_329181-20757.jpg?_wi=2", - }, - { - id: "t3", - name: "Julia Schneider", - handle: "@julia_s", - testimonial: "Schneller Service, werde definitiv wieder bestellen.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-with-food_23-2149143985.jpg", - }, - { - id: "t4", - name: "Thomas Schmidt", - handle: "@thomas_s", - testimonial: "Sehr lecker! Pünktliche Lieferung.", - rating: 4, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-table_23-2149213367.jpg", - }, - { - id: "t5", - name: "Anna Becker", - handle: "@anna_b", - testimonial: "Echte italienische Seele, sehr zu empfehlen.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/women-eating-traditional-italian-pizza-together_52683-110887.jpg", - }, + { id: "t1", name: "Sarah Müller", handle: "@sarah_m", testimonial: "Exzellente Pizza!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/three-girl-friends-having-pizza-bar_1303-19887.jpg" }, + { id: "t2", name: "Markus Weber", handle: "@markus_w", testimonial: "Perfekte Pizza!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiley-couple-sharing-fast-food_329181-20757.jpg" } ]} showRating={true} title="Was unsere Kunden sagen" - description="Wir schätzen jedes Feedback und arbeiten ständig an uns." - /> -
- -
- -
- -
-
-- 2.49.1