2025-04-04 09:01:49 +09:00

13 lines
265 B
TypeScript

import Login from '@/components/Login'
export default function page() {
return (
<>
<div className="flex flex-col items-center justify-center h-screen">
<h1 className="text-2xl font-bold">Login</h1>
<Login />
</div>
</>
)
}