2024-08-13 15:26:23 +08:00
|
|
|
// NOTE: UNUSED
|
|
|
|
|
2023-01-28 18:52:18 +08:00
|
|
|
import Link from '../components/link';
|
|
|
|
|
|
|
|
export default function NotFound() {
|
|
|
|
return (
|
|
|
|
<div id="not-found-page" className="deck-container" tabIndex="-1">
|
|
|
|
<div>
|
|
|
|
<h1>404</h1>
|
|
|
|
<p>Page not found.</p>
|
|
|
|
<p>
|
|
|
|
<Link to="/">Go home</Link>.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|