Removed sidebar and added breadcrumbs

This commit is contained in:
Alexis
2025-03-14 12:07:03 +01:00
parent 0126d42762
commit 895d8a887b
13 changed files with 286 additions and 56 deletions

View File

@@ -0,0 +1,13 @@
<script lang="ts" setup>
import type { HTMLAttributes } from "vue"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<nav aria-label="breadcrumb" :class="props.class">
<slot />
</nav>
</template>