mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-05-11 14:21:15 +00:00
15 lines
437 B
TypeScript
15 lines
437 B
TypeScript
import Link from "next/link";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="flex min-h-screen flex-col items-center justify-center gap-4">
|
|
<h1 className="text-4xl font-bold">404</h1>
|
|
<p className="text-muted-foreground">Page not found</p>
|
|
<Button asChild>
|
|
<Link href="/dashboard">Back to Dashboard</Link>
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|