diff options
Diffstat (limited to 'frontend/src/pages/NotFound.tsx')
| -rw-r--r-- | frontend/src/pages/NotFound.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/src/pages/NotFound.tsx b/frontend/src/pages/NotFound.tsx new file mode 100644 index 0000000..23c1184 --- /dev/null +++ b/frontend/src/pages/NotFound.tsx @@ -0,0 +1,15 @@ +export function NotFound() { + return ( + <div className="flex min-h-96 flex-col items-center justify-center"> + <div className="text-center"> + <h1 className="text-6xl font-bold text-gray-900">404</h1> + <h2 className="mt-4 text-2xl font-semibold text-gray-700"> + Page Not Found + </h2> + <p className="mt-2 text-gray-500"> + The page you're looking for doesn't exist. + </p> + </div> + </div> + ); +} |
