From f5d56f8c389858a6d2e92df8bc7337713dbda50c Mon Sep 17 00:00:00 2001 From: Arnav K Date: Sat, 14 Sep 2024 19:40:56 +0000 Subject: [PATCH] feat: designed not found page --- src/app/not-found.tsx | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 5855f54..1d9ee35 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,8 +1,20 @@ +import { Button } from "@/components/ui/button"; +import { HomeIcon } from "@radix-ui/react-icons"; export default function NotFoundPage() { return ( -
-

404

+
+
+

+ Page Not Found! +

+ +
); }