blob: f3c9fc78f2cea7ff394192a5341e98da6939ba21 (
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
|
import styles from "./footer.module.css";
export default async function Footer() {
return (
<div className={styles.footer}>
<p style={{ margin: 10 }}>
<a
href="https://stats.uptimerobot.com/Fxp7SE5Ll3"
target="_new"
>
Status
</a>
<a
href="https://github.com/real-zephex/Dramalama"
target="_new"
>
Github
</a>
<a
style={{ color: "#A3BE8C" }}
href="https://dramalama-zephex.koyeb.app"
target="_new"
>
Koyeb
</a>
<a
style={{ color: "#EBCB8B" }}
href="https://dramalama.vercel.app"
target="_new"
>
Vercel
</a>
<a
style={{ color: "#BF616A" }}
href="https://dramalama.netlify.app"
target="_new"
>
Netlify
</a>
</p>
</div>
);
}
|