update a lot of change since a while

This commit is contained in:
2026-01-22 10:29:36 +01:00
parent a4dcb95d83
commit e1c1475f10
78 changed files with 4200 additions and 534 deletions

View File

@@ -0,0 +1,13 @@
<script setup>
defineProps({
burgerColor: { type: String, default: 'hamburger_black' }
})
</script>
<template>
<span class="burger">
<span :class="['burger_line', burgerColor]"></span>
<span :class="['burger_line', burgerColor]"></span>
<span :class="['burger_line', burgerColor]"></span>
</span>
</template>