Agent Management System
Manage your information collection agents with our powerful dashboard. Please login to access the agent management features.
'use client' import { useAuth } from './contexts/AuthContext' import { useRouter } from 'next/navigation' import { useEffect } from 'react' export default function Home() { const { isAuthenticated } = useAuth() const router = useRouter() useEffect(() => { if (isAuthenticated) { router.push('/dashboard') } }, [isAuthenticated, router]) return (
Manage your information collection agents with our powerful dashboard. Please login to access the agent management features.