This commit is contained in:
Saeed Vaziry
2025-05-31 12:39:46 +02:00
parent c09c7a63fa
commit 0b7dd1732b
6 changed files with 297 additions and 20 deletions

View File

@ -1,7 +1,7 @@
import { type NavItem } from '@/types';
import {
ArrowLeftIcon,
ChartPieIcon,
ChartLineIcon,
ClockIcon,
CloudIcon,
CloudUploadIcon,
@ -14,6 +14,7 @@ import {
LogsIcon,
MousePointerClickIcon,
RocketIcon,
TerminalSquareIcon,
UsersIcon,
} from 'lucide-react';
import { ReactNode } from 'react';
@ -123,14 +124,15 @@ export default function ServerLayout({ children }: { children: ReactNode }) {
{
title: 'Monitoring',
href: route('monitoring', { server: page.props.server.id }),
icon: ChartPieIcon,
icon: ChartLineIcon,
isDisabled: isMenuDisabled,
},
{
title: 'Console',
href: route('console', { server: page.props.server.id }),
icon: TerminalSquareIcon,
isDisabled: isMenuDisabled,
},
// {
// title: 'Console',
// href: '#',
// icon: TerminalSquareIcon,
// },
{
title: 'Logs',
href: route('logs', { server: page.props.server.id }),