"use client"; import { m } from "framer-motion"; import { BarChart3, CheckCircle2, ChevronRight, Shield, Zap, } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; import { Button } from "./Button"; import { Counter } from "./Counter"; import { Reveal } from "./Reveal"; import { TechBackground } from "./TechBackground"; import { useTranslations } from "next-intl"; export default function Home() { const t = useTranslations("Index"); const serviceJsonLd = { "@context": "https://schema.org", "@type": "Service", name: t("portfolio.items.beratung.title"), provider: { "@type": "Organization", name: "MB Grid Solutions & Services GmbH", }, description: t("portfolio.description"), areaServed: "Europe", hasOfferCatalog: { "@type": "OfferCatalog", name: t("portfolio.title"), itemListElement: [ { "@type": "Offer", itemOffered: { "@type": "Service", name: t("portfolio.items.beratung.title"), }, }, { "@type": "Offer", itemOffered: { "@type": "Service", name: t("portfolio.items.begleitung.title"), }, }, { "@type": "Offer", itemOffered: { "@type": "Service", name: t("portfolio.items.beschaffung.title"), }, }, ], }, }; return (