import React from 'react'; import { FaFrown } from 'react-icons/fa'; import { ROUTES_ENUM } from '@/routes/route.constant'; import { useLocalization } from '@/utils/hooks/useLocalization'; const NotFound: React.FC = () => { const { translate } = useLocalization() 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 */} {translate('::Public.notFound.message')}

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