feat: Implement mobile navbar

This commit is contained in:
Jesse Wierzbinski 2024-12-09 16:52:04 +01:00
parent 4ba3ed3d37
commit 0987df7783
No known key found for this signature in database
17 changed files with 310 additions and 25 deletions

View file

@ -0,0 +1,9 @@
<template>
<DrawerContent class="flex flex-col gap-2 px-4 mb-4 [&>:nth-child(2)]:mt-4">
<slot />
</DrawerContent>
</template>
<script lang="ts" setup>
import { DrawerContent } from "../ui/drawer";
</script>