import type { FC } from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faArrowLeft } from "@fortawesome/pro-duotone-svg-icons"; import { useNavigate } from "react-router"; import { Button } from "@/components/base/buttons/button"; const ArrowLeft: FC<{ className?: string }> = ({ className }) => ; export function NotFound() { const router = useNavigate(); return (
404 error

We can’t find that page

Sorry, the page you are looking for doesn't exist or has been moved.

); }