diff --git a/src/app/page.tsx b/src/app/page.tsx index 983f665..aa046c0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCa 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 } from "lucide-react"; +import { Wrench, Building2, CheckCircle, Phone, MapPin, Briefcase } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -19,6 +19,24 @@ export default function HomePage() { { name: "Kontakt", id: "/kontakt" }, ]; + const structuredData = { + "@context": "https://schema.org", "@type": "LocalBusiness", "name": "Franke & Twiehaus", "description": "Zuverlässiger Unimog und Nutzfahrzeug Service in Lingen, Emsland", "image": "http://img.b2bpic.net/free-photo/handsome-stylish-redhead-worker-cleaning-his-dirty-hands-after-repairing-working-workshop_613910-19673.jpg?_wi=1", "address": { + "@type": "PostalAddress", "streetAddress": "Lingen, Emsland", "addressLocality": "Lingen", "addressRegion": "Niedersachsen", "postalCode": "", "addressCountry": "DE" + }, + "telephone": "+49591123456", "url": "https://franke-twiehaus.de", "priceRange": "$$", "areaServed": { + "@type": "City", "name": "Lingen" + }, + "serviceArea": { + "@type": "City", "name": "Lingen, Emsland, Niedersachsen" + }, + "sameAs": [ + "https://www.google.com/maps", "https://www.facebook.com" + ], + "knowsAbout": [ + "Unimog Service", "Unimog Reparatur", "Nutzfahrzeug Wartung", "Nutzfahrzeug Service", "LKW Reparatur", "Mercedes-Benz Unimog" + ] + }; + return ( +