INIT: initial commit

Added some initial files, components, functionality
This commit is contained in:
Fiona Lena Urban 2025-02-10 21:19:58 +01:00
commit 72aaf5174d
19 changed files with 9962 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<template>
<header class="Header">
<strong><span>Pro</span>Papier</strong>
<label for="burger_nav_toggle">
<Icon name="solar:hamburger-menu-broken" size="2em" />
</label>
<input type="checkbox" id="burger_nav_toggle" />
<nav>
<label for="burger_nav_toggle">
<Icon name="solar:close-circle-broken" />
</label>
<ul>
<li>Home</li>
<li>Übersicht</li>
</ul>
</nav>
</header>
</template>
<script setup lang="ts">
</script>