This repository has been archived on 2025-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
peas-legacy/src/app/not-found.tsx

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>
)
}