#109 add home page again

This commit is contained in:
Tim Wundenberg
2024-08-23 19:16:30 +02:00
committed by Tim
parent 262f44d7cd
commit 99b249fa66
17 changed files with 96 additions and 348 deletions

View File

@@ -12,11 +12,14 @@ templ Layout(comp templ.Component) {
<script defer src="https://umami.me-fit.eu/script.js" data-website-id="3c8efb09-44e4-4372-8a1e-c3bc675cd89a"></script>
</head>
<body>
@header()
if comp != nil {
@comp
}
@footer()
<div class="h-screen flex flex-col">
@header()
<div class="flex-1">
if comp != nil {
@comp
}
</div>
</div>
</body>
</html>
}