Files
kegiatanku/src/pages/NotFound.tsx
bipproduction eb5eee6ae9 baru ni e
2025-12-11 15:52:22 +08:00

20 lines
458 B
TypeScript

import { Anchor, Container, Text } from "@mantine/core";
export default function NotFound() {
return (
<Container>
<Text size="xl" ta="center" mb="md">
404 Not Found
</Text>
<Text ta="center" mb="lg">
The page you are looking for does not exist.
</Text>
<Text ta="center">
<Anchor href="/" c="blue" underline="hover">
Go back home
</Anchor>
</Text>
</Container>
);
}