minor: add The prefix

This commit is contained in:
2025-09-18 13:10:39 -04:00
parent f49c76a642
commit 2a70cf5533
5 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
const { profiles } = await useSiteOptions();
const { menuItems } = await useMenuItems("TOP");
const { breakpoints } = useResponsive();
const showLabels = breakpoints.greaterOrEqual("sm");
</script>
<template>
<UContainer class="flex items-center gap-1.5">
<UiSocialProfiles :profiles="profiles" class="mr-auto" />
<UNavigationMenu :items="menuItems" variant="link" content-orientation="vertical" />
<SiteHeaderTopAuth :show-labels="showLabels" />
<SiteHeaderTopMember :show-labels="showLabels" />
</UContainer>
</template>