26 lines
771 B
TypeScript
26 lines
771 B
TypeScript
import { Box, Button, Center, Heading, Link, Text } from '@chakra-ui/react';
|
|
import { MdDangerous } from 'react-icons/md';
|
|
|
|
import { PageLayoutInfoCenter } from '@/components/Layout/PageLayoutInfoCenter';
|
|
import { TopBar } from '@/components/TopBar/TopBar';
|
|
|
|
export const Error403 = () => {
|
|
return (
|
|
<>
|
|
<TopBar />
|
|
<PageLayoutInfoCenter padding="25px">
|
|
<Center>
|
|
<MdDangerous style={{ width: "250px", height: "250px", color: "red" }} />
|
|
</Center>
|
|
<Box textAlign="center">
|
|
<Heading>Erreur 403</Heading>
|
|
<Text color="orange.600">Cette page vous est interdite</Text>
|
|
<Link href="/">
|
|
Retour à l'accueil
|
|
</Link>
|
|
</Box>
|
|
</PageLayoutInfoCenter>
|
|
</>
|
|
);
|
|
};
|