-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.js
More file actions
24 lines (21 loc) · 583 Bytes
/
404.js
File metadata and controls
24 lines (21 loc) · 583 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import Link from 'next/link'
import Image from 'next/image'
import Layout from '@/components/Layout'
export default function NotFoundPage() {
return (
<Layout title='Page Not Found'>
<div className='flex flex-col items-center mt-20'>
<Image
src='/images/logo.png'
width={70}
height={70}
className='bg-gray-800 rounded-2xl'
/>
<h1 className='text-6xl my-5'>Whoops!</h1>
<h2 className='text-4xl text-gray-400 mb-5'>
This page does not exist
</h2>
</div>
</Layout>
)
}