diff --git a/src/app/page.tsx b/src/app/page.tsx index ad4029f..cd2c83b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,11 +4,12 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; +import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Wrench, Building2, CheckCircle, Phone, MapPin, Users } from "lucide-react"; +import { Wrench, Building2, Phone, Quote, CheckCircle, MapPin, Clock, Briefcase } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -18,6 +19,38 @@ export default function HomePage() { { name: "Kontakt", id: "/kontakt" }, ]; + const localBusinessSchema = { + "@context": "https://schema.org", "@type": "AutoRepair", "name": "Franke & Twiehaus", "image": "https://franke-twiehaus.de/logo.png", "description": "Zuverlässige Unimog und Nutzfahrzeug Reparatur, Wartung und Service in Lingen, Emsland. Professionelle Werkstatt mit über 30 Jahren Erfahrung.", "url": "https://franke-twiehaus.de", "telephone": "+49591123456", "email": "info@franke-twiehaus.de", "address": { + "@type": "PostalAddress", "streetAddress": "Ihre Straße 123", "addressLocality": "Lingen", "addressRegion": "Niedersachsen", "postalCode": "49808", "addressCountry": "DE" + }, + "geoCoordinates": { + "@type": "GeoCoordinates", "latitude": "52.2547", "longitude": "7.3247" + }, + "areaServed": [ + { + "@type": "City", "name": "Lingen" + }, + { + "@type": "City", "name": "Emsland" + }, + { + "@type": "Region", "name": "Niedersachsen" + } + ], + "priceRange": "$$", "openingHoursSpecification": [ + { + "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], + "opens": "07:00", "closes": "18:00" + }, + { + "@type": "OpeningHoursSpecification", "dayOfWeek": "Saturday", "opens": "08:00", "closes": "13:00" + } + ], + "sameAs": [ + "https://www.facebook.com/franke-twiehaus", "https://www.instagram.com/franke-twiehaus" + ] + }; + return ( +