scoresaber-reloaded-v2/src/app/not-found.tsx
Liam 37586d3a12
Some checks failed
deploy / deploy (push) Failing after 23s
fix 404 page from throwing an error
2023-10-20 22:06:27 +01:00

16 lines
440 B
TypeScript

import Card from "@/components/Card";
import Container from "@/components/Container";
export default async function NotFound() {
return (
<Container>
<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>
</Container>
);
}