blob: cbe480e9435b3917ad1377f850c8198466b5d0f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import kairosImage from './kairos.png'
export default function NotFound() {
return (
<main className="main">
<div className="content-wrapper">
<h1 className="title">573 UPDATES</h1>
<img
src={kairosImage.src}
alt="Updates image"
className="updates-image"
/>
<>
<br/>
<a href="https://arcade.moekyun.me" className="redirect-link">
you seem lost... lets go back home
</a>
</>
</div>
</main>
);
}
|