import Link from 'next/link' import { Header } from '@/components/header' import { Footer } from '@/components/footer' import { Button } from '@/components/ui/button' import { Card, CardContent } from '@/components/ui/card' import { Home, Search, ArrowLeft, Server } from 'lucide-react' export default function NotFound() { return (
{/* 404 Visual */}
404

Page Not Found

Oops! The page you're looking for seems to have wandered off into the digital void.

{/* Helpful Actions */}

Common pages you might be looking for:

About Us Contact Web Tools Sign In
{/* Fun Error Message */}

Error Code: 404 - Page Not Found
Suggestion: Check the URL for typos or use the navigation menu above

) }