'use client'; import Link from 'next/link'; import { motion } from 'framer-motion'; import AnimatedBackground from '@/components/AnimatedBackground'; import Footer from '@/components/Footer'; import Logo from '@/components/Logo'; import { Button } from '@/components/ui/button'; import { Home } from 'lucide-react'; export default function NotFound() { return (
{/* Logo */} {/* 404 heading */} 404 {/* Subtitle */} Page Not Found {/* Description */} The tool or page you are looking for doesn't exist or has been moved. {/* CTA Button */}
); }