"use client"; import { KeyRound, Shield, Users, Building2, Activity, Lock } from "lucide-react"; import { useLanguage } from "@/components/language-provider"; import { Section, SectionHeading } from "@/components/ui/section"; import { FEATURES } from "@/lib/content"; const ICONS = { key: KeyRound, shield: Shield, users: Users, building: Building2, activity: Activity, lock: Lock, } as const; export function Features() { const { t, lang } = useLanguage(); return (
{FEATURES.map((f) => { const Icon = ICONS[f.icon]; return (

{f.title[lang]}

{f.description[lang]}

); })}
); }