mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
export default function NotFound() {
|
|
return (
|
|
<div className="space-y-4 text-vercel-pink">
|
|
<h2 className="text-lg font-bold">Not Found</h2>
|
|
<p className="text-sm">Could not find requested resource</p>
|
|
</div>
|
|
);
|
|
}
|