This commit is contained in:
eric
2025-11-13 05:05:53 +08:00
parent cbdc65f56e
commit 891af61146
691 changed files with 83952 additions and 0 deletions

18
app/not-found.tsx Normal file
View File

@@ -0,0 +1,18 @@
'use client'
import Link from 'next/link'
import { Button } from "@/registry/new-york/ui/button"
export default function NotFound() {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-background p-4">
<h2 className="text-4xl font-bold text-primary mb-4">404</h2>
<p className="text-xl text-muted-foreground mb-6">Page Not Found</p>
<Button asChild variant="default">
<Link href="/">
Return Home
</Link>
</Button>
</div>
)
}