26 lines
899 B
TypeScript
26 lines
899 B
TypeScript
import { Link } from "@remix-run/react";
|
|
|
|
export default function DashboardCatchAll() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8">
|
|
<div className="sm:mx-auto sm:w-full sm:max-w-md">
|
|
<div className="text-center">
|
|
<h2 className="mt-6 text-3xl font-extrabold text-gray-900">
|
|
Page Not Found
|
|
</h2>
|
|
<p className="mt-2 text-sm text-gray-600">
|
|
The page you're looking for doesn't exist.
|
|
</p>
|
|
<div className="mt-6">
|
|
<Link
|
|
to="/dashboard"
|
|
className="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700"
|
|
>
|
|
Back to Dashboard
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |