10 lines
No EOL
335 B
TypeScript
10 lines
No EOL
335 B
TypeScript
export default function NotFoundPage() {
|
|
return(
|
|
<div style={{width: "100vw", height: "100vh", display: "flex", justifyContent: "center", alignContent: "center", alignItems: "center"}}>
|
|
<div>
|
|
<h1>Not Found :(</h1>
|
|
<a href={"/"}>Home</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |