'use client'; import Link from 'next/link'; import { ArrowRight, Shield, Zap, BarChart3, CheckCircle2, ChevronRight } from 'lucide-react'; import { motion } from 'framer-motion'; const fadeInUp = { initial: { opacity: 0, y: 20 }, animate: { opacity: 1, y: 0 }, transition: { duration: 0.8, ease: [0.22, 1, 0.36, 1] } }; const stagger = { animate: { transition: { staggerChildren: 0.1 } } }; export default function Home() { const serviceJsonLd = { "@context": "https://schema.org", "@type": "Service", "name": "Technische Beratung für Energiekabelprojekte", "provider": { "@type": "Organization", "name": "MB Grid Solutions GmbH" }, "description": "Herstellerneutrale technische Beratung für Ihre Projekte in Mittel- und Hochspannungsnetzen bis zu 110 kV.", "areaServed": "Europe", "hasOfferCatalog": { "@type": "OfferCatalog", "name": "Dienstleistungen", "itemListElement": [ { "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Technische Beratung" } }, { "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Projektbegleitung" } }, { "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Produktbeschaffung" } } ] } }; return (