import React from 'react'
import { Link } from 'react-router-dom'
import {
ArrowRight,
Calendar,
Users,
Shield,
Monitor,
Smartphone,
Server,
Database,
BarChart,
BookOpen,
CreditCard,
MessageSquare,
Phone,
} from 'lucide-react'
import { useLanguage } from '../context/LanguageContext'
const Home: React.FC = () => {
const { t } = useLanguage()
const features = [
{ icon: , title: t('features.reliable'), description: t('features.reliable.desc') },
{ icon: , title: t('features.rapid'), description: t('features.rapid.desc') },
{ icon: , title: t('features.expert'), description: t('features.expert.desc') },
{ icon: , title: t('features.muhasebe'), description: t('features.muhasebe.desc') },
{ icon: , title: t('features.iletisim'), description: t('features.iletisim.desc') },
{ icon: , title: t('features.mobil'), description: t('features.mobil.desc') },
{ icon: , title: t('features.scalable'), description: t('features.scalable.desc') },
{ icon: , title: t('features.guvenlik'), description: t('features.guvenlik.desc') },
]
const solutions = [
{ icon: , title: t('solutions.web.title'), description: t('solutions.web.desc'), color: 'bg-blue-600' },
{ icon: , title: t('solutions.mobile.title'), description: t('solutions.mobile.desc'), color: 'bg-purple-600' },
{ icon: , title: t('solutions.custom.title'), description: t('solutions.custom.desc'), color: 'bg-green-600' },
{ icon: , title: t('solutions.database.title'), description: t('solutions.database.desc'), color: 'bg-red-600' },
]
return (
{/* Hero */}
{t('hero.title')}
{t('hero.subtitle')}
{t('hero.cta.consultation')}
{t('hero.cta.discover')}
{t('hero.service1.title')}
{t('hero.service1.desc')}
{t('hero.service2.title')}
{t('hero.service2.desc')}
{t('hero.service3.title')}
{t('hero.service3.desc')}
{/* Features */}
{t('features.title')}
{t('features.subtitle')}
{features.map((feature, i) => (
{feature.icon}
{feature.title}
{feature.description}
))}
{/* Solutions */}
{t('solutions.title')}
{t('solutions.subtitle')}
{solutions.map((s, i) => (
{s.icon}
{s.title}
{s.description}
))}
{/* Call to Action */}
{t('common.getStarted')}
{t('common.contact')}
{t('common.learnMore')}
)
}
export default Home