Spaces:
Runtime error
Runtime error
| "use client"; | |
| import { useEffect } from "react"; | |
| import { useRouter } from "next/navigation"; | |
| export default function DeepLearningPage() { | |
| const router = useRouter(); | |
| useEffect(() => { | |
| // Redirect to dashboard as the main entry point | |
| router.push("/deep-learning/dashboard"); | |
| }, [router]); | |
| return ( | |
| <div className="flex items-center justify-center h-screen bg-black/95"> | |
| <div className="text-[#00ffe7] text-xl font-mono"> | |
| Initializing Quantum Weaver Platform... | |
| </div> | |
| </div> | |
| ); | |
| } |