aboutsummaryrefslogtreecommitdiff
path: root/web/src/layouts/Base.astro
diff options
context:
space:
mode:
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>