import { useNavigate } from 'react-router-dom'; import type { ReactElement } from 'react'; import { Layout } from '@/components/layout/Layout'; import { PrimaryButton } from '@/components/shared'; import { Home, ArrowLeft } from 'lucide-react'; const NotFound = (): ReactElement => { const navigate = useNavigate(); const handleGoHome = (): void => { navigate('/dashboard'); }; const handleGoBack = (): void => { navigate(-1); }; return (
{/* 404 Number */}

404

{/* Error Message */}

Page Not Found

The page you're looking for doesn't exist or has been moved. Please check the URL or navigate back to the dashboard.

{/* Action Buttons */}
Go to Dashboard Go Back
); }; export default NotFound;