From 898d484a6801311476eb201773799283c553ecb4 Mon Sep 17 00:00:00 2001 From: kashyap1ankit Date: Sat, 16 Nov 2024 14:45:43 +0530 Subject: [PATCH] added not-fpund page --- app/not-found.tsx | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/app/not-found.tsx b/app/not-found.tsx index 5de0f74..44a6f36 100644 --- a/app/not-found.tsx +++ b/app/not-found.tsx @@ -1,3 +1,42 @@ +"use client"; +import { Button } from "@/components/ui/button"; +import { fraunces } from "@/utils/fonts/font"; +import { motion } from "framer-motion"; +import { Settings } from "lucide-react"; +import Link from "next/link"; +import { IoWarning } from "react-icons/io5"; + export default function NotFound() { - return
Sorry, No Page Found
; + return ( +
+ + 4 + + + + 4 + +
+ +

This Page Doesn't Exist

+
+ + + + +
+ ); }