mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-01 04:33:51 +00:00
23 lines
561 B
TypeScript
23 lines
561 B
TypeScript
import {
|
|
Card,
|
|
CardContent,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@app/components/ui/card";
|
|
|
|
export default async function ResourceNotFound() {
|
|
return (
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader>
|
|
<CardTitle className="text-center text-2xl font-bold">
|
|
Resource Not Found
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
The resource you're trying to access does not exist
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|