-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
31 lines (26 loc) · 991 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// @ts-nocheck
let sobre = document.querySelector("#sobre")
async function getApiGithub() {
try {
const dadosPerfil = await fetch("https://api.github.com/users/thaissan")
const perfil = await dadosPerfil.json()
let conteudo = `
<img src="${perfil.avatar_url}" alt="Foto de perfil ${perfil.name}." class="sobre">
<div class="info-sobre">
<h2>Quem sou eu?</h2>
<p>Lorem ipsum dolor sit amet. In fugiat fugit sit excepturi
consequatur cum sequi vero qui vero voluptatem et unde dicta
aut consequatur adipisci ut Quis ${perfil.bio}</p>
<div class="github">
<a href="${perfil.html_url}" target="_blank">GitHub</a>
<p>${perfil.followers} Seguidores</p>
<p>${perfil.public_repos} Repositórios</p>
</div>
</div>
`
sobre.innerHTML += conteudo
} catch (error) {
console.log(error)
}
}
getApiGithub()