phanpy/src/pages/404.jsx
Lim Chee Aun aaeca7dd03 Refactor out a Timeline component
Also replace login() with createClient() for faster log in
2023-01-28 18:52:18 +08:00

16 lines
318 B
JavaScript

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