From 374a7d80edeaf5616123d7106603807dcf4bbb16 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 20:55:36 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 939f560..f88ba56 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,9 +7,8 @@ import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwen import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TextAbout from '@/components/sections/about/TextAbout'; -import { Car, Wrench, Phone, MapPin, Clock } from "lucide-react"; +import { Car, Wrench } from "lucide-react"; export default function LandingPage() { return ( @@ -35,9 +34,6 @@ export default function LandingPage() { { name: "Kontakt", id: "contact" } ]} brandName="Fabian Frank" - button={{ - text: "0176 79240351", href: "tel:017679240351" - }} /> @@ -57,11 +53,10 @@ export default function LandingPage() {
@@ -75,15 +70,24 @@ export default function LandingPage() { features={[ { title: "Reifenservice", description: "Fachgerechte Montage, Wuchten und Einlagerung.", icon: Wrench, - mediaItems: [] + mediaItems: [ + { imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" }, + { imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" } + ] }, { title: "Wohnmobil & Wohnwagen", description: "Spezialisierte Wartung und Vorbereitung für Ihre Reise.", icon: Car, - mediaItems: [] + mediaItems: [ + { imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" }, + { imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" } + ] }, { title: "Allgemeine Reparaturen", description: "Verschleißteilwechsel und Inspektionen nach Herstellervorgaben.", icon: Wrench, - mediaItems: [] + mediaItems: [ + { imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" }, + { imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" } + ] } ]} /> -- 2.49.1