Initializes the client-side application with fundamental UI components, including navigation, cards for articles and auctions, and various elements for user interaction and display. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea Replit-Commit-Checkpoint-Type: intermediate_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/bVdKIaU
22 lines
711 B
TypeScript
22 lines
711 B
TypeScript
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>
|
|
);
|
|
}
|