api / src /client /pages /not-found.tsx
OhMyDitzzy
Feat: add project
6d9f36a
raw
history blame contribute delete
783 Bytes
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>
)
}