mirror of
https://git.netzspielplatz.de/docker-multiarch/openwrt-firmware-selector.git
synced 2025-11-09 01:49:35 +00:00
19 lines
571 B
TypeScript
19 lines
571 B
TypeScript
import React, { FunctionComponent } from 'react';
|
|
import { Box, Container, Link, Paper, Typography } from '@material-ui/core';
|
|
|
|
const NotFound: FunctionComponent = () => (
|
|
<Container style={{ marginTop: '50px' }}>
|
|
<Paper elevation={3}>
|
|
<Box padding={3}>
|
|
<Typography variant="h5" component="h3">
|
|
404 Page Not Found
|
|
</Typography>
|
|
<Typography component="p">
|
|
Please head to the <Link href={process.env.PUBLIC_URL}>home</Link>.
|
|
</Typography>
|
|
</Box>
|
|
</Paper>
|
|
</Container>
|
|
);
|
|
|
|
export default NotFound;
|