import { Link } from 'react-router-dom'; import { useLanguage } from '../contexts/LanguageContext'; import { Ghost, ArrowLeft, Home } from 'lucide-react'; export default function NotFound() { const { t } = useLanguage(); return (
{/* Animated background */}
{/* Ghost icon with subtle animation */}
{/* 404 number */}

404

{t('notFound.title')}

{t('notFound.description')}

{/* Action buttons */}
{t('notFound.goHome')}
); }