diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-07-01 10:10:23 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-07-01 10:10:23 -0700 |
| commit | fdebd69904e3b225dde1182de2fe9938344abbf2 (patch) | |
| tree | 9862990fcc68323a5366ef2e058d218ede49a04b /middleware/src/app/not-found.tsx | |
| parent | fdbf92c95c5355136c38e958f6add37a8d242aa7 (diff) | |
add not-found page
Diffstat (limited to 'middleware/src/app/not-found.tsx')
| -rw-r--r-- | middleware/src/app/not-found.tsx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/middleware/src/app/not-found.tsx b/middleware/src/app/not-found.tsx new file mode 100644 index 0000000..cbe480e --- /dev/null +++ b/middleware/src/app/not-found.tsx @@ -0,0 +1,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> + ); +} |
