95 lines
2.4 KiB
TypeScript
95 lines
2.4 KiB
TypeScript
![]() |
import Button from "@material-ui/core/Button";
|
||
|
import {
|
||
|
createStyles,
|
||
|
Theme,
|
||
|
withStyles,
|
||
|
WithStyles
|
||
|
} from "@material-ui/core/styles";
|
||
|
import Typography from "@material-ui/core/Typography";
|
||
|
import * as React from "react";
|
||
|
import SVG from "react-inlinesvg";
|
||
|
|
||
|
import * as notFoundImage from "@assets/images/not-found-404.svg";
|
||
|
import i18n from "../../i18n";
|
||
|
|
||
|
const styles = (theme: Theme) =>
|
||
|
createStyles({
|
||
|
button: {
|
||
|
marginTop: theme.spacing.unit * 2,
|
||
|
padding: 20
|
||
|
},
|
||
|
container: {
|
||
|
[theme.breakpoints.down("sm")]: {
|
||
|
gridTemplateColumns: "1fr",
|
||
|
padding: theme.spacing.unit * 3,
|
||
|
width: "100%"
|
||
|
},
|
||
|
display: "grid",
|
||
|
gridTemplateColumns: "1fr 487px",
|
||
|
margin: "0 auto",
|
||
|
width: 830
|
||
|
},
|
||
|
header: {
|
||
|
fontWeight: 600 as 600
|
||
|
},
|
||
|
innerContainer: {
|
||
|
[theme.breakpoints.down("sm")]: {
|
||
|
order: 1,
|
||
|
textAlign: "center"
|
||
|
},
|
||
|
display: "flex",
|
||
|
flexDirection: "column",
|
||
|
justifyContent: "center"
|
||
|
},
|
||
|
notFoundImage: {
|
||
|
"& svg": {
|
||
|
width: "100%"
|
||
|
}
|
||
|
},
|
||
|
root: {
|
||
|
alignItems: "center",
|
||
|
display: "flex",
|
||
|
height: "100vh",
|
||
|
width: "100vw"
|
||
|
}
|
||
|
});
|
||
|
|
||
|
interface NotFoundPageProps extends WithStyles<typeof styles> {
|
||
|
onBack: () => void;
|
||
|
}
|
||
|
|
||
|
const NotFoundPage = withStyles(styles, { name: "NotFoundPage" })(
|
||
|
({ classes, onBack }: NotFoundPageProps) => (
|
||
|
<div className={classes.root}>
|
||
|
<div className={classes.container}>
|
||
|
<div className={classes.innerContainer}>
|
||
|
<div>
|
||
|
<Typography className={classes.header} variant="h3">
|
||
|
{i18n.t("Ooops!...")}
|
||
|
</Typography>
|
||
|
<Typography className={classes.header} variant="h4">
|
||
|
{i18n.t("Something's missing")}
|
||
|
</Typography>
|
||
|
<Typography>{i18n.t("Sorry, the page was not found")}</Typography>
|
||
|
</div>
|
||
|
<div>
|
||
|
<Button
|
||
|
className={classes.button}
|
||
|
color="primary"
|
||
|
variant="contained"
|
||
|
onClick={onBack}
|
||
|
>
|
||
|
{i18n.t("Go back to dashboard", { context: "button" })}
|
||
|
</Button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div>
|
||
|
<SVG className={classes.notFoundImage} src={notFoundImage} />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
);
|
||
|
NotFoundPage.displayName = "NotFoundPage";
|
||
|
export default NotFoundPage;
|