mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-14 08:41:04 +10:00
20 lines
654 B
TypeScript
20 lines
654 B
TypeScript
import { Title, Text, Button, Container, Group } from "@mantine/core";
|
|
import classes from "./error-404.module.css";
|
|
import { Link } from "react-router-dom";
|
|
|
|
export function Error404() {
|
|
return (
|
|
<Container className={classes.root}>
|
|
<Title className={classes.title}>404 Page Not Found</Title>
|
|
<Text c="dimmed" size="lg" ta="center" className={classes.description}>
|
|
Sorry, we can't find the page you are looking for.
|
|
</Text>
|
|
<Group justify="center">
|
|
<Button component={Link} to={"/home"} variant="subtle" size="md">
|
|
Take me back to homepage
|
|
</Button>
|
|
</Group>
|
|
</Container>
|
|
);
|
|
}
|