mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-02 23:57:19 +03:00
16 lines
318 B
React
16 lines
318 B
React
|
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>
|
||
|
);
|
||
|
}
|