'use client';
import { motion } from 'framer-motion';
import { Plus } from 'lucide-react';
import { useRouter } from 'next/navigation';
export default function NotFoundPage() {
const router = useRouter();
return (
404
Page Not Found
The paste you're looking for might have been deleted, expired, or the
URL is incorrect.
router.push('/')}
className="cursor-pointer group inline-flex items-center gap-2 px-6 py-3 rounded-xl text-base font-medium
text-white bg-gradient-to-r from-blue-600 to-blue-500 shadow-lg shadow-blue-500/30
hover:shadow-blue-500/50 transition-all duration-300 focus:outline-none focus:ring-2 focus:ring-blue-400/60"
>
Create New Paste
);
}