Skip to content
Permalink
Newer
Older
100644 15 lines (14 sloc) 429 Bytes
October 19, 2023 16:49
1
import { Container, Heading, Link, Text } from "@chakra-ui/react";
2
3
export default function () {
4
return (
5
<Container maxW="container.lg" mt="8vh" textAlign="left">
6
<Heading size="4xl">403</Heading>
7
<br />
8
<Text fontSize="xl">Sorry, but you aren't allowed to access that.</Text>
9
<br />
10
<Link color="#646cff" onClick={() => history.go(-1)}>
11
Go back
12
</Link>
13
</Container>
14
);
15
}