mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
15 lines
337 B
JavaScript
15 lines
337 B
JavaScript
import Neon from "../componets/Neon";
|
|
|
|
export default function ErrorNotFound() {
|
|
return (
|
|
<>
|
|
<link rel="canonical" href="https://asimonson.com/activities"></link>
|
|
<Neon color="#fff">
|
|
<h1 className="neon">ERROR 404</h1>
|
|
<br />
|
|
<h3 className="neon">URL Not Found</h3>
|
|
</Neon>
|
|
</>
|
|
);
|
|
}
|