omnidev / app /not-found.tsx
kalhdrawi's picture
ุฃูˆู„ ุฑูุน ู„ู„ู…ู„ูุงุช ุฅู„ู‰ ุงู„ุณุจูŠุณ kalhdrawi/omnidev
1cf8f01
raw
history blame
923 Bytes
import Link from 'next/link';
import { Button } from '@/components/ui/button';
export default function NotFound() {
return (
<div className="min-h-screen bg-black flex items-center justify-center px-4">
<div className="text-center">
<h1 className="text-6xl font-bold text-white mb-4">404</h1>
<h2 className="text-2xl font-semibold text-gray-300 mb-6">
Page Not Found
</h2>
<p className="text-gray-400 mb-8 max-w-md mx-auto">
The page you&apos;re looking for doesn&apos;t exist or has been moved.
</p>
<div className="space-x-4">
<Button asChild>
<Link href="/projects">
Go to Projects
</Link>
</Button>
<Button variant="outline" asChild>
<Link href="/">
Go Home
</Link>
</Button>
</div>
</div>
</div>
);
}