🧼 Simplifies the menu structure

This commit is contained in:
Rune Harlyk
2024-08-19 22:48:57 +02:00
parent d07b0b5d7f
commit 42405ec93f
7 changed files with 288 additions and 272 deletions
@@ -0,0 +1,13 @@
<script>
import logo from '$lib/assets/logo512.png';
export let appName;
</script>
<a
href="/"
class="rounded-box mb-4 flex items-center hover:scale-[1.02] active:scale-[0.98]"
>
<img src={logo} alt="Logo" class="h-12 w-12" />
<h1 class="px-4 text-2xl font-bold">{appName}</h1>
</a>