feat(web): расписание, каналы уведомлений, история проверок, drift-badge

This commit is contained in:
2026-07-04 14:40:29 +07:00
parent 45259b9720
commit 34422420ca
14 changed files with 937 additions and 3 deletions
+3 -1
View File
@@ -1,6 +1,6 @@
import type { ReactNode } from "react"
import { NavLink, useLocation, useNavigate } from "react-router-dom"
import { Globe, LogOut, Users, LayoutTemplate, SquareTerminal } from "lucide-react"
import { BellRing, CalendarClock, Globe, LogOut, Users, LayoutTemplate, SquareTerminal } from "lucide-react"
import { useAuth } from "@/auth/AuthContext"
import { Button } from "@/components/ui/button"
import { cn } from "@/lib/utils"
@@ -9,6 +9,8 @@ const NAV = [
{ to: "/domains", label: "Domains", icon: Globe },
{ to: "/accounts", label: "Accounts", icon: Users },
{ to: "/templates", label: "Templates", icon: LayoutTemplate },
{ to: "/schedule", label: "Schedule", icon: CalendarClock },
{ to: "/channels", label: "Channels", icon: BellRing },
] as const
export function Layout({ children }: { children: ReactNode }) {