import { Icon } from "../../components/ui/Icon"; interface LoginBrandProps { oauthChecking: boolean; oauthReady: boolean; } function VignetteMark() { return ( ); } export function LoginBrand({ oauthChecking, oauthReady }: LoginBrandProps) { return (
Vignette

상담을 연습하고,
함께 돌아봅니다.

가상 내담자와 상담을 연습하고, 회기 기록과 피드백으로 다음 연습을 준비하세요.

Google 로그인 {oauthChecking ? "확인 중" : oauthReady ? "모든 Google 계정" : "설정 필요"}
); }