import { Typography } from "@nous-research/ui/ui/components/typography/index"; import type { StatusResponse } from "@/lib/api"; import { cn } from "@/lib/utils"; import { useI18n } from "@/i18n"; export function SidebarFooter({ status }: SidebarFooterProps) { const { t } = useI18n(); return (
{status?.version != null ? `v${status.version}` : "—"} {t.app.footer.org}
); } interface SidebarFooterProps { status: StatusResponse | null; }