返回 AiToEarn
page.tsx
根目录 / project / aitoearn-web / src / app / [lng] / auth / page.tsx
1 /**
2 * AuthPage - Auth 根页面
3 * 根据登录状态重定向到相应页面
4 */
5
6 import AuthRedirect from './components/AuthRedirect'
7
8 export default function AuthPage() {
9 return <AuthRedirect />
10 }
11
11 lines Plain Text