aboutsummaryrefslogtreecommitdiff
path: root/web/src/layouts/Base.astro
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-11-17 03:02:24 +0100
committerLinnea Gräf <nea@nea.moe>2024-11-17 04:27:36 +0100
commita1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea (patch)
tree5ab36193b22554346d26d5aca8198ca4402fd5b8 /web/src/layouts/Base.astro
parentd26852105463a51d5b71eb70fdaba787f0914030 (diff)
downloadFirmament-a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea.tar.gz
Firmament-a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea.tar.bz2
Firmament-a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea.zip
feat(web): Add hero image and navbar
Diffstat (limited to 'web/src/layouts/Base.astro')
-rw-r--r--web/src/layouts/Base.astro13
1 files changed, 13 insertions, 0 deletions
diff --git a/web/src/layouts/Base.astro b/web/src/layouts/Base.astro
new file mode 100644
index 0000000..da71f41
--- /dev/null
+++ b/web/src/layouts/Base.astro
@@ -0,0 +1,13 @@
+---
+import Head, {type Props as HeadProps} from "./Head.astro";
+type Props = {
+} & HeadProps;
+---
+
+<html>
+<Head {...Astro.props}></Head>
+<body class="bg-gray-800 text-white">
+<slot/>
+<footer></footer>
+</body>
+</html>