"use client"; import { motion } from "framer-motion"; const STATS = [ { label: "Maksimum Kapasite", value: "150T" }, { label: "Teknik Destek", value: "24/7" }, { label: "Modern Filo", value: "15+" }, { label: "Güvenlik Kaydı", value: "100%" }, ]; export function StatsGrid() { return (
{STATS.map((stat, idx) => ( {stat.value} {stat.label} ))}
); } import { cn } from "@/lib/utils";