aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/footer/page.jsx
blob: ea763a628f0d6a1a9918042937085c8c6021295f (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
import styles from "./footer.module.css";

export default async function Footer() {
	return (
		<div className={styles.footer}>
			<div className={styles.FooterLeftContainer}>
				<a
					href="https://stats.uptimerobot.com/Fxp7SE5Ll3"
					target="_new"
				>
					Status
				</a>
				<a
					href="https://github.com/real-zephex/Dramalama"
					target="_new"
				>
					Github
				</a>
			</div>

			<div className={styles.FooterRightContainer}>
				<a
					style={{ color: "#EBCB8B" }}
					href="https://dramalama.vercel.app"
				>
					Vercel
				</a>
				<a
					style={{ color: "	#A3BE8C" }}
					href="https://dramalama.netlify.app"
				>
					Netlify
				</a>
			</div>
		</div>
	);
}