feat: Add translation on 3 languages for sight page

This commit is contained in:
2025-06-01 00:34:59 +03:00
parent 0d9bbb140f
commit 87386c6a73
22 changed files with 768 additions and 732 deletions

View File

@ -1,3 +1,4 @@
import { authStore } from "@shared";
import { Power, LucideIcon, Building2, MonitorSmartphone } from "lucide-react";
export const DRAWER_WIDTH = 300;
@ -5,7 +6,8 @@ interface NavigationItem {
id: string;
label: string;
icon: LucideIcon;
path: string;
path?: string;
onClick?: () => void;
}
export const NAVIGATION_ITEMS: {
@ -31,7 +33,9 @@ export const NAVIGATION_ITEMS: {
id: "logout",
label: "Выйти",
icon: Power,
path: "/logout",
onClick: () => {
authStore.logout();
},
},
],
};