Greff3 commited on
Commit
745c643
·
verified ·
1 Parent(s): 8fc9f17

Update src/components/login/login.tsx

Browse files
Files changed (1) hide show
  1. src/components/login/login.tsx +8 -1
src/components/login/login.tsx CHANGED
@@ -22,10 +22,17 @@ function Login({
22
  <span className="text-xs bg-red-500/10 text-red-500 rounded-full pl-1.5 pr-2.5 py-0.5 flex items-center justify-start gap-1.5">
23
  ВАЖНО
24
  </span>
25
- На сегодня лимит исчерпан
26
  </header>
27
  <main className="px-4 py-4 space-y-3">
28
  {children}
 
 
 
 
 
 
 
29
  </main>
30
  </>
31
  );
 
22
  <span className="text-xs bg-red-500/10 text-red-500 rounded-full pl-1.5 pr-2.5 py-0.5 flex items-center justify-start gap-1.5">
23
  ВАЖНО
24
  </span>
25
+ На сегодня лимит использован
26
  </header>
27
  <main className="px-4 py-4 space-y-3">
28
  {children}
29
+ <a href="/api/login" onClick={handleClick}>
30
+ <img
31
+ src="https://huggingface.co/datasets/huggingface/badges/resolve/main/sign-in-with-huggingface-lg-dark.svg"
32
+ alt="Sign in with Hugging Face"
33
+ className="mx-auto"
34
+ />
35
+ </a>
36
  </main>
37
  </>
38
  );