Files
dragonsstash/src/app/not-found.tsx
xCyanGrizzly 3a5726e82b Init
2026-02-18 14:26:36 +01:00

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>
);
}