aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/Layout.astro
blob: 6fecdb90d89c390752cb01cc6568a032f31e02dc (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
<!doctype html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width" />

		<meta name="title" content="bits & Bytes Minecraft" />
		<meta name="description" content="Official Minecraft server for the bits & Bytes Community" />

		<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
		<meta name="generator" content={Astro.generator} />
		<title>bits & Bytes Minecraft</title>
	</head>
	<body>
		<slot />
	</body>
</html>

<style>
	@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
	html,
	body {
		font-family: "Jetbrains Mono", monospace;
		background-color: #272727;
		color: #ffffff;
		margin: 0;
		width: 100%;
		height: 100%;
	}
</style>