diff options
Diffstat (limited to 'src/layouts')
| -rw-r--r-- | src/layouts/Layout.astro | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..e51b083 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,26 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width" /> + <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> |
