Initialize project structure with UI components, CDN video display, and configurations. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 50814a1e-92e4-4968-856f-7bc7eedf5e8f Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/50814a1e-92e4-4968-856f-7bc7eedf5e8f/uoltFyL
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>
|
|
);
|
|
}
|