Initial commit

This commit is contained in:
2023-10-19 16:49:05 -04:00
commit d731041378
63 changed files with 10037 additions and 0 deletions

15
components/Forbidden.tsx Normal file
View File

@ -0,0 +1,15 @@
import { Container, Heading, Link, Text } from "@chakra-ui/react";
export default function () {
return (
<Container maxW="container.lg" mt="8vh" textAlign="left">
<Heading size="4xl">403</Heading>
<br />
<Text fontSize="xl">Sorry, but you aren't allowed to access that.</Text>
<br />
<Link color="#646cff" onClick={() => history.go(-1)}>
Go back
</Link>
</Container>
);
}