import React from 'react'; import Navbar from '@/components/Navbar/navbar'; import { Sparkles, Rocket, Clock } from 'lucide-react'; export default function NotFound() { return (
{/* Coming Soon Message */}

Something Awesome is Coming Soon!

We're building something magical for you. Stay tuned!

{[0, 1, 2, 3].map((dot) => (
))}
); } // THis is the not found page and above is the coming soon // "use client"; // import Link from 'next/link'; // import { useEffect, useState } from 'react'; // import { Home, Search, MoveLeft } from 'lucide-react'; // export default function NotFound() { // const [isLoaded, setIsLoaded] = useState(false); // useEffect(() => { // setIsLoaded(true); // }, []); // return ( //
//
// {/* Animated 404 number */} //
//

// 404 //

//
//
//
//
// //
//
// {/* Page not found message */} //

// Oops! Page Not Found //

//

// The page you are looking for seems to have wandered off into the digital void. Let's guide you back to reality. //

// {/* Animated dots - glowing effect */} //
// {[0, 1, 2, 3, 4].map((dot) => ( //
// ))} //
// {/* Home link button - glowing effect */} // // // Return to Home // //
// {/* Floating particles for atmosphere */} //
// {[...Array(20)].map((_, i) => ( //
// ))} //
// {/* Add keyframes for floating animation */} // //
// ); // }