import React from 'react'; import { Frown } from 'lucide-react'; // Lucide-react kütüphanesinden Frown ikonunu import et import { useLanguage } from '../context/LanguageContext'; const NotFound: React.FC = () => { const { t } = useLanguage(); return (
{/* Arka plan ve metin rengi güncellendi, padding eklendi */} {/* İkon boyutu ve rengi güncellendi */}

404

{/* Başlık boyutu ve rengi güncellendi */}

{/* Metin rengi, margin ve max-width güncellendi */} {t('notFound.message')}

{/* Buton stili güncellendi */} {t('notFound.button')}
); }; export default NotFound;