import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { AlertCircle, Home } from "lucide-react"; import { useLocation } from "wouter"; export default function NotFound() { const [, setLocation] = useLocation(); const handleGoHome = () => { setLocation("/"); }; return (
Sorry, the page you are looking for doesn't exist.
It may have been moved or deleted.