| "use client"; |
|
|
| import Link from "next/link"; |
| import { Button } from "@/components/ui/button"; |
| import { Home, ArrowLeft } from "lucide-react"; |
|
|
| export default function NotFound() { |
| return ( |
| <div className="min-h-screen flex items-center justify-center bg-background"> |
| <div className="text-center space-y-6 px-4"> |
| <div className="space-y-2"> |
| <h1 className="text-9xl font-bold bg-linear-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent"> |
| 404 |
| </h1> |
| <h2 className="text-3xl font-bold text-foreground">Page Not Found</h2> |
| <p className="text-muted-foreground max-w-md mx-auto"> |
| Oops! The page you're looking for doesn't exist. It might have been moved or deleted. |
| </p> |
| </div> |
| |
| <div className="flex items-center justify-center gap-4"> |
| <Link href="/"> |
| <Button> |
| <Home className="mr-2 h-4 w-4" /> |
| Go Home |
| </Button> |
| </Link> |
| <Button variant="outline" onClick={() => window.history.back()}> |
| <ArrowLeft className="mr-2 h-4 w-4" /> |
| Go Back |
| </Button> |
| </div> |
| </div> |
| </div> |
| ); |
| } |
|
|