import { Badge } from "@/components/ui/badge" import { Card, CardContent } from "@/components/ui/card" import { Zap, ShieldCheck, Layers, BarChart3, Headset, Cloud, } from "lucide-react" import homeData from "@/data/home.json" const iconMap: Record = { "zap": , "shield-check": , "layers": , "bar-chart-3": , "headset": , "cloud": , } export function AboutSection() { const { advantages } = homeData return (
{/* Header */}
{advantages.sectionBadge}

{advantages.title}

{advantages.subtitle}

{/* 3x2 grid */}
{advantages.items.map((item, index) => ( {/* Top accent line */}
{/* Icon */}
{iconMap[item.icon]}
{/* Index number */}

{item.title}

{String(index + 1).padStart(2, "0")}

{item.description}

))}
) }