mission-control/app/not-found.tsx

102 lines
3.7 KiB
TypeScript

"use client";
import Link from "next/link";
import { useEffect, useState } from "react";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { FileQuestion, Home, Search, ArrowLeft } from "lucide-react";
export default function NotFound() {
const [mounted, setMounted] = useState(false);
useEffect(() => {
setMounted(true);
}, []);
// Prevent hydration mismatch by not rendering interactive elements until mounted
if (!mounted) {
return (
<div className="min-h-screen flex items-center justify-center p-4 bg-background">
<Card className="w-full max-w-lg">
<CardHeader className="text-center pb-2">
<div className="w-16 h-16 rounded-full bg-blue-500/10 flex items-center justify-center mx-auto mb-4">
<FileQuestion className="w-8 h-8 text-blue-500" />
</div>
<CardTitle className="text-4xl font-bold">404</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="text-center">
<h2 className="text-xl font-semibold mb-2">Page Not Found</h2>
<p className="text-muted-foreground">
The page you are looking for doesn&apos;t exist or has been moved.
</p>
</div>
</CardContent>
</Card>
</div>
);
}
return (
<div className="min-h-screen flex items-center justify-center p-4 bg-background">
<Card className="w-full max-w-lg">
<CardHeader className="text-center pb-2">
<div className="w-16 h-16 rounded-full bg-blue-500/10 flex items-center justify-center mx-auto mb-4">
<FileQuestion className="w-8 h-8 text-blue-500" />
</div>
<CardTitle className="text-4xl font-bold">404</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="text-center">
<h2 className="text-xl font-semibold mb-2">Page Not Found</h2>
<p className="text-muted-foreground">
The page you are looking for doesn&apos;t exist or has been moved.
</p>
</div>
<div className="bg-muted rounded-lg p-4">
<p className="text-sm text-muted-foreground mb-2">Looking for something?</p>
<ul className="space-y-1 text-sm">
<li>
<Link href="/" className="text-primary hover:underline flex items-center gap-2">
<Home className="w-4 h-4" />
Dashboard
</Link>
</li>
<li>
<Link href="/tasks" className="text-primary hover:underline flex items-center gap-2">
<Search className="w-4 h-4" />
Tasks
</Link>
</li>
<li>
<Link href="/projects" className="text-primary hover:underline flex items-center gap-2">
<Search className="w-4 h-4" />
Projects
</Link>
</li>
</ul>
</div>
<div className="flex flex-col sm:flex-row gap-2 pt-2">
<Button
variant="outline"
className="flex-1"
onClick={() => window.history.back()}
>
<ArrowLeft className="w-4 h-4 mr-2" />
Go Back
</Button>
<Link href="/" className="flex-1">
<Button className="w-full">
<Home className="w-4 h-4 mr-2" />
Back to Dashboard
</Button>
</Link>
</div>
</CardContent>
</Card>
</div>
);
}