feat: add registration token
ci-front / build (push) Successful in 2m22s

This commit is contained in:
2026-04-04 05:52:43 +03:00
parent d62205b329
commit ed439656f8
5 changed files with 453 additions and 3 deletions
@@ -6,6 +6,7 @@ import {
FaUser,
FaUsers,
FaRocket,
FaKey,
} from "react-icons/fa";
import { useAuthStore } from "@/modules/auth/store/useAuthStore";
@@ -17,6 +18,7 @@ export const Navigation = () => {
const navItems = [
{ path: "/", label: "Главная", icon: FaHome },
{ path: "/add-agents", label: "Деплой", icon: FaRocket },
{ path: "/registration", label: "Регистрация", icon: FaKey },
{ path: "/admin", label: "Админка", icon: FaUsers, adminOnly: true },
{ path: "/themes", label: "Темы", icon: FaPalette },
];