File size: 783 Bytes
6d9f36a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import { Button } from "@/components/ui/button";
import { AlertCircle } from "lucide-react";
import { Link } from "react-router-dom"
export default function NotFound() {
return (
<div className="min-h-screen w-full flex flex-col items-center justify-center bg-background text-center p-4">
<div className="w-16 h-16 bg-red-500/10 rounded-full flex items-center justify-center mb-6">
<AlertCircle className="w-8 h-8 text-red-500" />
</div>
<h1 className="text-4xl font-display font-bold text-white mb-2">404 Page Not Found</h1>
<p className="text-muted-foreground max-w-md mb-8">
The page you are looking for doesn't exist or has been moved.
</p>
<Link to="/">
<Button>Go back</Button>
</Link>
</div>
)
}
|