2026-03-11 23:33:10 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import AppLogoIcon from '@/components/AppLogoIcon.vue';
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div
|
|
|
|
|
class="flex aspect-square size-8 items-center justify-center rounded-md bg-sidebar-primary text-sidebar-primary-foreground"
|
|
|
|
|
>
|
|
|
|
|
<AppLogoIcon class="size-5 fill-current text-white dark:text-black" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ml-1 grid flex-1 text-left text-sm">
|
2026-03-18 00:12:50 +00:00
|
|
|
<span class="mb-0.5 truncate leading-tight font-semibold">{{
|
|
|
|
|
$page.props.name
|
|
|
|
|
}}</span>
|
2026-03-11 23:33:10 +00:00
|
|
|
</div>
|
|
|
|
|
</template>
|