style not-found

This commit is contained in:
Timothy Pidashev
2024-03-18 18:38:35 -07:00
parent 70c7d03576
commit 385b237906

View File

@@ -1,9 +1,11 @@
import React from 'react' import React from 'react'
import Link from "next/link";
const Not_found = () => { const Not_found = () => {
return ( return (
<div> <div className="fixed top-0 left-0 right-0 bottom-0 flex flex-col items-center justify-center">
<p>404: The requested page is not found!</p> <h1 className="font-bold text-light-red-1 dark:text-dark-red-1">Whoops, the requested page could not be found...</h1>
<Link href="/" className="text-light-blue-1 dark:text-blue-1 hover:underline">Go back to Home</Link>
</div> </div>
) )
} }