23 lines
667 B
TypeScript
23 lines
667 B
TypeScript
"use client";
|
|
|
|
import { SidebarMenu, SidebarMenuButton, SidebarMenuItem } from "@basango/ui/components/sidebar";
|
|
|
|
export function AppSidebarInfo() {
|
|
const version = process.env.NEXT_PUBLIC_VERSION || "0.0.0";
|
|
|
|
return (
|
|
<SidebarMenu>
|
|
<SidebarMenuItem>
|
|
<SidebarMenuButton asChild size="lg">
|
|
<a href="#">
|
|
<div className="grid flex-1 text-left text-sm leading-tight">
|
|
<span className="truncate font-medium">Basango Dashboard</span>
|
|
<span className="truncate text-xs">v{version}</span>
|
|
</div>
|
|
</a>
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
);
|
|
}
|