32 lines
673 B
TypeScript
32 lines
673 B
TypeScript
import Link from "next/link";
|
|
|
|
export default function NotFound() {
|
|
return(
|
|
<div className="has-text-centered">
|
|
|
|
<h1 className="title">NotFound - HTTP404</h1>
|
|
|
|
<div className="notification is-warning"
|
|
style={{
|
|
width: "15em",
|
|
margin: "0 auto",
|
|
}}
|
|
>
|
|
<h3>
|
|
{"The page you requested"}
|
|
<br />
|
|
{"could not be found"}
|
|
</h3>
|
|
</div>
|
|
|
|
<Link
|
|
className="button"
|
|
style={{marginTop: "5px"}}
|
|
href="/"
|
|
>
|
|
Go to Home
|
|
</Link>
|
|
|
|
</div>
|
|
)
|
|
} |