This commit implements the core admin dashboard functionality including NextAuth authentication, Cloudflare D1 database integration with complete schema, and Cloudflare R2 file upload system for portfolio images. Features include artist management, appointment scheduling, and data migration capabilities.
21 lines
596 B
TypeScript
21 lines
596 B
TypeScript
"use client";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="min-h-[50vh] flex items-center justify-center p-8">
|
|
<div className="text-center space-y-3">
|
|
<h2 className="text-xl font-semibold">404 - Page Not Found</h2>
|
|
<p className="text-sm text-muted-foreground">
|
|
The page you are looking for does not exist or has been moved.
|
|
</p>
|
|
<a
|
|
href="/"
|
|
className="inline-flex items-center rounded-md border px-3 py-1.5 text-sm hover:bg-accent"
|
|
>
|
|
Go home
|
|
</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|