import React from 'react'; import { ShieldCheck, HeartHandshake, Crown, Camera, Sparkles } from 'lucide-react'; import { Language } from '../types'; import { TRANSLATIONS } from '../constants/translations'; interface FeaturesProps { language: Language; } export const Features: React.FC = ({ language }) => { const t = TRANSLATIONS[language]; const features = [ { icon: , title: t.feat1Title, desc: t.feat1Desc, }, { icon: , title: t.feat2Title, desc: t.feat2Desc, }, { icon: , title: t.feat3Title, desc: t.feat3Desc, }, { icon: , title: t.feat4Title, desc: t.feat4Desc, }, ]; return (

{t.whyUsTitle}

{t.whyUsDesc}

{features.map((feat, idx) => (
{feat.icon}

{feat.title}

{feat.desc}

))}
); };