secret/pages/404.js
2023-09-13 21:30:27 +05:30

18 lines
541 B
JavaScript

import Head from 'next/head'
import Link from 'next/link'
export default function Custom404() {
return (
<div className='my-20 flex flex-col items-center justify-center'>
<Head>
<title>404 - Not Found | Yaps</title>
</Head>
<h1 className='my-20 text-xl md:text-4xl'>404 - Page Not Found</h1>
<Link href='/' passHref>
<button className='rounded-md bg-app-greyish-blue p-2 px-4 hover:bg-app-pure-white hover:text-app-dark-blue'>
Go home
</button>
</Link>
</div>
)
}