blob: e3af4f93f9f1c53d060d2f16cce6da2a3614b21b (
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
|
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: "#EBCB8B" }}
href="https://dramalama.vercel.app"
>
Vercel
</a>
<a
style={{ color: "#BF616A" }}
href="https://dramalama.netlify.app"
>
Netlify
</a>
<a
style={{ color: " #A3BE8C" }}
href="https://dramalama-1phg.onrender.com"
>
Render
</a>
</p>
</div>
);
}
|