scoresaber-reloaded-v2/src/app/not-found.tsx

16 lines
440 B
TypeScript
Raw Normal View History

2023-10-20 18:23:49 +01:00
import Card from "@/components/Card";
2023-10-20 18:12:33 +01:00
import Container from "@/components/Container";
export default async function NotFound() {
return (
<Container>
2023-10-20 18:23:49 +01:00
<Card className="flex h-full items-center justify-center">
<p className="text-xl font-bold text-red-500">404 Not Found</p>
<p className="text-lg text-gray-300">
The page you requested does not exist.
</p>
</Card>
2023-10-20 18:12:33 +01:00
</Container>
);
}