feat: login and register page

This commit is contained in:
Junyan Qin
2025-05-09 20:33:12 +08:00
parent b966f47acb
commit cf6076f504
14 changed files with 385 additions and 277 deletions

View File

@@ -1,3 +1,12 @@
'use client';
import { useRouter } from 'next/navigation';
import { useEffect } from 'react';
export default function Home() {
const router = useRouter();
useEffect(() => {
router.push('/login');
}, []);
return <div className={``}></div>;
}