import * as React from 'react'; import { NavLink, Outlet } from 'react-router-dom'; import { cn } from '@/lib/utils'; import { useAuth } from '@/lib/auth'; interface NavItem { to: string; label: string; } const NAV_ITEMS: NavItem[] = [ { to: '/dashboard/agents', label: 'Agents' }, { to: '/dashboard/audit', label: 'Audit Log' }, { to: '/dashboard/health', label: 'Health' }, { to: '/dashboard/usage', label: 'Usage' }, ]; /** * Outer application shell: top navigation bar and main content area. * Renders the active page via . */ export function AppShell(): React.JSX.Element { const { logout } = useAuth(); return (
SentryAgent.ai
); }