blob: 35dedae75c2b844b7c9618faf3b95bb7a916ee45 (
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
50
51
52
53
54
55
56
57
58
59
60
|
---
import dataList from "../data/user.json";
---
<footer class="footer">
<div class="footer-content">
<p class="footer-text">萌え萌えキュン</p>
<div class="footer-links">
<a
href="https://github.com/pinapelz/Astrolink-moe"
class="footer-link"
aria-label="GitHub"
>
<i class="ri-github-fill"></i>
Source
</a>
</div>
</div>
</footer>
<style>
.footer {
padding: 1.5rem 0;
text-align: center;
position: relative;
}
.footer-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.footer-text {
font-size: 0.875rem;
color: var(--zinc-900);
}
.footer-emoji {
font-size: 1rem;
color: var(--zinc-800);
}
.footer-links {
display: flex;
gap: 1rem;
}
.footer-link {
font-size: 1.25rem;
color: var(--zinc-900);
transition: color 0.2s ease-in-out;
}
.footer-link:hover {
color: var(--pink-darker);
}
</style>
|