Spaces:
Running
Running
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're looking for doesn'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> | |
); | |
} | |