Initial commit
This commit is contained in:
15
components/Forbidden.tsx
Normal file
15
components/Forbidden.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user