import { Link } from 'react-router-dom'; import { Video, Shield, Users, Palette, ArrowRight, Zap, Globe } from 'lucide-react'; import { useLanguage } from '../contexts/LanguageContext'; export default function Home() { const { t } = useLanguage(); const features = [ { icon: Video, title: t('home.featureVideoTitle'), desc: t('home.featureVideoDesc'), }, { icon: Users, title: t('home.featureRoomsTitle'), desc: t('home.featureRoomsDesc'), }, { icon: Shield, title: t('home.featureUsersTitle'), desc: t('home.featureUsersDesc'), }, { icon: Palette, title: t('home.featureThemesTitle'), desc: t('home.featureThemesDesc'), }, { icon: Zap, title: t('home.featureRecordingsTitle'), desc: t('home.featureRecordingsDesc'), }, { icon: Globe, title: t('home.featureOpenSourceTitle'), desc: t('home.featureOpenSourceDesc'), }, ]; return (
{t('home.heroSubtitle')}
{t('home.featuresSubtitle')}
{feature.desc}