# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
This commit is contained in:
Eric Huang 2025-06-25 20:10:45 -07:00
parent 114946ae88
commit a4d84f7805
22 changed files with 821 additions and 38 deletions

View file

@ -0,0 +1,6 @@
import { LoginPage } from "@/components/auth/login-page";
import { serverConfig } from "@/lib/server-config";
export default function LoginPageRoute() {
return <LoginPage backendUrl={serverConfig.backendUrl} />;
}