27 lines
611 B
TypeScript
27 lines
611 B
TypeScript
'use client'
|
|
|
|
import { useEffect } from 'react'
|
|
import { useRouter } from 'next/navigation'
|
|
import { isAuthenticated } from '@/lib/auth'
|
|
|
|
export default function Home() {
|
|
const router = useRouter()
|
|
|
|
useEffect(() => {
|
|
if (isAuthenticated()) {
|
|
router.push('/dashboard')
|
|
} else {
|
|
router.push('/login')
|
|
}
|
|
}, [router])
|
|
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center">
|
|
<div className="text-center">
|
|
<h1 className="text-4xl font-bold">Website Monitor</h1>
|
|
<p className="mt-4 text-gray-600">Loading...</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|