source: src/sections/error/500-view.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.2 KB
Line 
1'use client';
2
3import { m } from 'framer-motion';
4
5// @mui
6import Button from '@mui/material/Button';
7import Typography from '@mui/material/Typography';
8// layouts
9import CompactLayout from 'src/layouts/compact';
10// assets
11import { SeverErrorIllustration } from 'src/assets/illustrations';
12// components
13import { RouterLink } from 'src/routes/components';
14import { MotionContainer, varBounce } from 'src/components/animate';
15
16// ----------------------------------------------------------------------
17
18export default function Page500() {
19 return (
20 <CompactLayout>
21 <MotionContainer>
22 <m.div variants={varBounce().in}>
23 <Typography variant="h3" sx={{ mb: 2 }}>
24 500 Internal Server Error
25 </Typography>
26 </m.div>
27
28 <m.div variants={varBounce().in}>
29 <Typography sx={{ color: 'text.secondary' }}>
30 There was an error, please try again later.
31 </Typography>
32 </m.div>
33
34 <m.div variants={varBounce().in}>
35 <SeverErrorIllustration sx={{ height: 260, my: { xs: 5, sm: 10 } }} />
36 </m.div>
37
38 <Button component={RouterLink} href="/" size="large" variant="contained">
39 Go to Home
40 </Button>
41 </MotionContainer>
42 </CompactLayout>
43 );
44}
Note: See TracBrowser for help on using the repository browser.