mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 12:26:02 +01:00
26 lines
642 B
Vue
26 lines
642 B
Vue
<script setup lang="ts">
|
|
import InstanceSmallCard from "~/components/instance/small-card.vue";
|
|
import {
|
|
SidebarHeader,
|
|
SidebarMenu,
|
|
SidebarMenuItem,
|
|
} from "~/components/ui/sidebar";
|
|
|
|
const authStore = useAuthStore();
|
|
</script>
|
|
|
|
<template>
|
|
<SidebarHeader>
|
|
<SidebarMenu>
|
|
<SidebarMenuItem>
|
|
<NuxtLink href="/">
|
|
<InstanceSmallCard
|
|
v-if="authStore.instance"
|
|
:instance="authStore.instance"
|
|
/>
|
|
</NuxtLink>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
</SidebarHeader>
|
|
</template>
|