import { useTranslation } from 'react-i18next'; import { Github, Linkedin, Mail } from 'lucide-react'; import { motion } from 'framer-motion'; import { FloatingPaths } from '../../../components/FloatingPaths'; const Hero = () => { const { t } = useTranslation(); const scrollToSection = (sectionId: string) => { const element = document.getElementById(sectionId); if (element) { element.scrollIntoView({ behavior: 'smooth' }); } }; return (
{/* Floating Paths Background */}
{/* Concentric Circles Background */}
{[1, 2, 3, 4, 5].map((index) => (
))}
{/* Top Navigation */}
{t('pages.home.hero.cta')}
{/* Main Content */}
{/* Profile Image */} {t('pages.home.hero.image.alt')} {/* Title and Name */} {t('pages.home.hero.title')} {t('pages.home.hero.name')}| {/* Navigation */}
{/* Contact Button Bottom */}
); }; export default Hero;