import React from 'react'; import { useTranslation } from 'react-i18next'; import { ChevronRight, Cpu, GitBranch, Shield } from 'lucide-react'; import { NetworkStats } from './NetworkStats'; const HeroSection: React.FC = () => { const { t } = useTranslation(); return (
{/* Kurdish Flag Background */}
Kurdish Flag
{/* Content */}
Substrate Parachain v1.0

PezkuwiChain

{t('hero.title')}

{t('hero.subtitle')}

{/* Live Network Stats */}
127
{t('hero.stats.activeProposals')}
3,482
{t('hero.stats.totalVoters')}
2.1M
{t('hero.stats.tokensStaked')}
95%
{t('hero.stats.trustScore')}
); }; export default HeroSection;