This commit is contained in:
xCyanGrizzly
2026-02-18 14:26:36 +01:00
commit 3a5726e82b
167 changed files with 104081 additions and 0 deletions

14
src/app/not-found.tsx Normal file
View File

@@ -0,0 +1,14 @@
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>
);
}