- Add all new Frontend source files (pages, components, hooks, utils) - Add selenium_MHBatchPaymentCheckWorker.py and MHSinglePaymentCheckWorker.py - Add install-steps-5-13.sh setup script - Update .gitignore to exclude runtime/sensitive data (backups, uploads, chat-history, keys, downloads, generated .d.ts files) while keeping folders - Add .gitkeep to preserve empty runtime folders in git Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
703 B
JavaScript
19 lines
703 B
JavaScript
import { Card, CardContent } from "@/components/ui/card";
|
|
import { AlertCircle } from "lucide-react";
|
|
export default function NotFound() {
|
|
return (<div className="min-h-screen w-full flex items-center justify-center bg-gray-50">
|
|
<Card className="w-full max-w-md mx-4">
|
|
<CardContent className="pt-6">
|
|
<div className="flex mb-4 gap-2">
|
|
<AlertCircle className="h-8 w-8 text-red-500"/>
|
|
<h1 className="text-2xl font-bold text-gray-900">404 Page Not Found</h1>
|
|
</div>
|
|
|
|
<p className="mt-4 text-sm text-gray-600">
|
|
Did you forget to add the page to the router?
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
</div>);
|
|
}
|