CampFireCritics/src/pages/NotFoundPage.jsx
2025-05-07 10:48:06 +03:00

25 lines
954 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Link } from "react-router-dom";
import { FiHome } from "react-icons/fi";
function NotFoundPage() {
return (
<div className="pt-20 flex items-center justify-center min-h-screen">
<div className="container-custom max-w-2xl text-center py-12">
<h1 className="text-6xl font-bold mb-6 text-campfire-amber">404</h1>
<h2 className="text-3xl font-bold mb-4">
Оказавшись в лимбе, вы не нашли подходящую страницу
</h2>
<p className="text-campfire-ash mb-8">
Похоже, вы сбились с пути. Страница, которую вы ищете, не существует
или была перемещена.
</p>
<Link to="/" className="btn-primary inline-flex items-center">
<FiHome className="mr-2" /> Вернуться
</Link>
</div>
</div>
);
}
export default NotFoundPage;