@@ 40,7 40,7 @@ templ Base(title string) {
<title>{ title }</title>
</head>
<body>
- <main class="flex flex-col items-center w-full">
+ <main class="flex flex-col items-center w-full min-h-screen justify-between">
<div class="flex gap-2 p-8 w-full max-w-4xl items-center">
<div class="group w-max">
<a class="bg-size-200 bg-pos-0 group-hover:bg-pos-100
@@ 76,9 76,9 @@ templ Base(title string) {
{ children... }
</div>
- <footer class="fixed bottom-0 p-8">
+ <div class="flex flex-col justify-self-end items-center pb-8 pt-2 gap-1">
<img class="h-24" src="/static/createdwith.jpeg">
- </footer>
+ </div>
</main>
</body>
</html>