nextjs moans so i shut it up

This commit is contained in:
Liam 2022-10-19 20:22:14 +01:00
parent 54902eb7b7
commit c457c84bd9

@ -1,4 +1,4 @@
import { Container, Grid, Image, Text } from "@nextui-org/react"; import { Container, Grid, Image, Link, Text } from "@nextui-org/react";
import { Component } from "react"; import { Component } from "react";
export default class Home extends Component { export default class Home extends Component {
@ -8,9 +8,11 @@ export default class Home extends Component {
render() { render() {
return ( return (
<Container css={{ <Container
marginTop: '$15' css={{
}}> marginTop: "$15",
}}
>
<Grid.Container gap={2}> <Grid.Container gap={2}>
<Grid <Grid
xs={12} xs={12}
@ -25,12 +27,11 @@ export default class Home extends Component {
marginTop: "30px", marginTop: "30px",
}} }}
> >
<Text h2 b>Whoops! This page is unknown!</Text> <Text h2 b>
Whoops! This page is unknown!
</Text>
<Text h3> <Text h3>
To visit the main website click{" "} <Link href="/">Click here to visit the main website</Link>
<span>
<a href="/">here</a>
</span>
</Text> </Text>
</div> </div>
</Grid> </Grid>