diff --git a/app/(main)/not-found.tsx b/app/(main)/not-found.tsx new file mode 100644 index 0000000..ec5be60 --- /dev/null +++ b/app/(main)/not-found.tsx @@ -0,0 +1,27 @@ +import { TriangleAlertIcon } from 'lucide-react' +import type { Metadata } from 'next' +import Link from 'next/link' +import { Button } from '@/components/ui/button' + +export const metadata: Metadata = { + title: 'Not Found', + description: + "Sorry, we couldn't find the page or resource you were looking for. It might have been removed, renamed, or did not exist in the first place.", +} + +export default function NotFound() { + return ( +
+ +

404 - Not Found

+

+ Sorry, we couldn't find the page or resource you were looking for. + It might have been removed, renamed, or did not exist in the first + place. +

+ +
+ ) +} diff --git a/app/not-found.tsx b/app/not-found.tsx deleted file mode 100644 index 0ca8f0d..0000000 --- a/app/not-found.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import { TriangleAlertIcon } from 'lucide-react' -import type { Metadata } from 'next' -import Link from 'next/link' -import { Navbar } from '@/components/Navbar' -import { Button } from '@/components/ui/button' - -export const metadata: Metadata = { - title: 'Not Found', - description: - "Sorry, we couldn't find the page or resource you were looking for. It might have been removed, renamed, or did not exist in the first place.", -} - -export default function NotFound() { - return ( - <> -
- -
- -
- -

404 - Not Found

-

- Sorry, we couldn't find the page or resource you were looking - for. It might have been removed, renamed, or did not exist in the - first place. -

- -
- - ) -}