This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/pages/404.js

53 lines
999 B
JavaScript
Raw Normal View History

2022-10-19 19:22:14 +00:00
import { Container, Grid, Image, Link, Text } from "@nextui-org/react";
2022-10-19 19:13:26 +00:00
import { Component } from "react";
export default class Home extends Component {
constructor(props) {
super(props);
}
render() {
return (
2022-10-19 19:22:14 +00:00
<Container
css={{
marginTop: "$15",
}}
>
2022-10-19 19:13:26 +00:00
<Grid.Container gap={2}>
<Grid
xs={12}
sm={6}
justify="center"
css={{
textAlign: "center",
}}
>
<div
style={{
marginTop: "30px",
}}
>
2022-10-19 19:22:14 +00:00
<Text h2 b>
Whoops! This page is unknown!
</Text>
2022-10-19 19:13:26 +00:00
<Text h3>
2022-10-19 19:22:14 +00:00
<Link href="/">Click here to visit the main website</Link>
2022-10-19 19:13:26 +00:00
</Text>
</div>
</Grid>
<Grid xs={12} sm={6} justify="center">
<Image
alt="Helpful doggo"
src="https://cdn.fascinated.cc/fPKqSysuqz.jpg?raw=true"
css={{
borderRadius: "5%",
display: "initial",
}}
></Image>
</Grid>
</Grid.Container>
</Container>
);
}
}