blob: 8365418529489f4be5aae1639330f1ba9df9feb3 (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
---
const API_URL = "https://api.lanyard.rest/v1/users/246787839570739211";
const response = await fetch(API_URL);
const data = await response.json();
const discordUser = data.data.discord_user;
const discordStatus = data.data.discord_status;
const statusColors = {
online: "#43b581",
idle: "#faa61a",
dnd: "#f04747",
offline: "#747f8d",
};
---
<section style={`background-color: ${statusColors[discordStatus]};`}>
<img src="https://assets-global.website-files.com/6257adef93867e50d84d30e2/636e0a6ca814282eca7172c6_icon_clyde_white_RGB.svg"alt={`${discordUser.username}'s Avatar`} />
<h2>Status: {discordStatus}</h2>
</section>
<style>
section {
display: flex;
align-items: center;
padding: 20px;
border-radius: 10px;
color: white;
transition: background-color 0.3s ease-in-out;
}
img {
width: 60px;
height: 60px;
border-radius: 50%;
margin-right: 20px;
}
h2 {
margin: 0;
font-size: 1.5rem;
}
p {
margin: 0;
font-size: 1rem;
opacity: 0.8;
}
</style>
|