import Link from 'next/link'; import AnimatedBackground from '@/components/AnimatedBackground'; import Logo from '@/components/Logo'; import { ArrowLeft } from 'lucide-react'; export default function NotFound() { return (
{/* Logo */}
{/* 404 */}
404
{/* Message */}

Page not found

The tool or page you're looking for doesn't exist or has been moved.

{/* CTA */}
Back to Home
); }