"use client"; import { Link2, UserCircle2, SlidersHorizontal } from "lucide-react"; import { useLanguage } from "@/components/language-provider"; import { Section, SectionHeading } from "@/components/ui/section"; const ICONS = [Link2, UserCircle2, SlidersHorizontal]; export function Benefits() { const { t } = useLanguage(); return (
{t.benefits.points.map((p, i) => { const Icon = ICONS[i]; return (

{p.title}

{p.body}

); })}
); }