AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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