File tree 2 files changed +17
-2
lines changed
2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { allDocs , type Doc } from "contentlayer/generated" ;
2
- import { Footer } from "flowbite-react" ;
3
2
import type { Metadata } from "next" ;
4
- import Image from "next/image" ;
5
3
import Link from "next/link" ;
6
4
import { notFound } from "next/navigation" ;
7
5
import Markdown from "react-markdown" ;
Original file line number Diff line number Diff line change
1
+ import { HomeNavbar } from "~/components/homepage" ;
2
+ import { MainFooter } from "~/components/main-footer" ;
3
+
4
+ export default function NotFoundPage ( ) {
5
+ return (
6
+ < div className = "relative flex min-h-screen flex-col" >
7
+ < HomeNavbar />
8
+ < div className = "mx-auto flex max-w-screen-sm flex-1 flex-col justify-center px-4 py-8 text-center sm:py-16 lg:px-6 xl:px-0" >
9
+ < h1 className = "mb-4 text-4xl font-extrabold text-primary-600" > 404 - Page Not Found</ h1 >
10
+ < p className = "text-gray-500 md:text-xl dark:text-gray-400" >
11
+ Whoops! That page doesn’t exist. But do not fret, check out our other resources to get started.
12
+ </ p >
13
+ </ div >
14
+ < MainFooter />
15
+ </ div >
16
+ ) ;
17
+ }
You can’t perform that action at this time.
0 commit comments