From d8e740011a06f7698d2c4520b6630bf4fa2d2373 Mon Sep 17 00:00:00 2001 From: rajun Date: Tue, 28 Jul 2026 11:14:17 +0530 Subject: [PATCH] feat: add 404 not found page --- app/routes/not-found.tsx | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 app/routes/not-found.tsx diff --git a/app/routes/not-found.tsx b/app/routes/not-found.tsx new file mode 100644 index 0000000..8ef0d2a --- /dev/null +++ b/app/routes/not-found.tsx @@ -0,0 +1,33 @@ +import { Link } from 'react-router'; +import { Button } from '~/components/ui/button'; +import { Card } from '~/components/ui/card'; +import { Badge } from '~/components/ui/badge'; +import { FileQuestion } from 'lucide-react'; + +export default function NotFound() { + return ( +
+
+ + +
+ +
+
+ 404 Error +

Page Not Found

+
+

+ The page you are looking for does not exist or has been moved. +

+
+ + + +
+
+
+ ); +}