import { ShieldHalf, LogIn, ExternalLink } from "lucide-react"; import { useAuth } from "react-oidc-context"; import { Button } from "../../components/ui/button"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "../../components/ui/card"; function LoginPage() { const auth = useAuth(); const handleSSOLogin = () => { // OIDC client-side authentication flow started here auth.signinRedirect(); }; return (

Baron SSO

Developer Control Plane

개발자 포털 로그인 Baron 통합 인증(SSO)을 통해 개발자 포털에 접속합니다.

개발자 포털 세션은 브라우저 정책에 따라 유지됩니다.
민감한 작업 시 재인증을 요구할 수 있습니다.

인증 정보가 없거나 로그인이 되지 않는 경우
시스템 관리자에게 문의하세요.

); } export default LoginPage;