From b4e407e132b351cb3b2ec463ecaffd214227b4e4 Mon Sep 17 00:00:00 2001 From: Dhanya MD Date: Thu, 10 Oct 2024 18:29:42 +0530 Subject: [PATCH] modified not-found-page --- apps/web/app/not-found.tsx | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 apps/web/app/not-found.tsx diff --git a/apps/web/app/not-found.tsx b/apps/web/app/not-found.tsx new file mode 100644 index 00000000..fe55443f --- /dev/null +++ b/apps/web/app/not-found.tsx @@ -0,0 +1,39 @@ +import { ArrowRight } from 'lucide-react' +import Image from 'next/image' +import Link from 'next/link' +import learnhouseIcon from 'public/black_logo.png' + +export default function NotFound() { + return ( +
+
+ logo +
+
+

+ 404! +

+

+ We are very sorry for the inconvinience. It looks like you're trying to +

access a page that has been deleted or never existed before
+

+
+
+ +
+
+ ) +} +