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,21 @@
<script lang="ts" setup>
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
import { ChevronRight } from "lucide-vue-next"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<li
role="presentation"
aria-hidden="true"
:class="cn('[&>svg]:w-3 [&>svg]:h-3', props.class)"
>
<slot>
<ChevronRight />
</slot>
</li>
</template>