import Container from "@/components/ui/Container"; const stats = [ { value: "20+", label: "Jahre Erfahrung" }, { value: "1.000+", label: "Kunden in der Region" }, { value: "Reutte", label: "Unser Standort" }, { value: "24/7", label: "Netzüberwachung" }, ]; export default function TrustSection() { return (

TeleNetSystems in Zahlen

{stats.map((stat) => (

{stat.value}

{stat.label}

))}
); }