upd: connected ke db

Deskripi:
- list error report general dan per apps
- update status
- update feedback

No Issues
This commit is contained in:
2026-04-14 12:05:34 +08:00
parent 14adaa8526
commit a0cafbf2e2
6 changed files with 963 additions and 180 deletions

View File

@@ -12,25 +12,26 @@ import {
Select,
Stack,
Text,
ThemeIcon
ThemeIcon,
useComputedColorScheme,
useMantineColorScheme
} from '@mantine/core'
import { useDisclosure } from '@mantine/hooks'
import { useMantineColorScheme, useComputedColorScheme } from '@mantine/core'
import { Link, useLocation, useMatches, useNavigate, useParams } from '@tanstack/react-router'
import {
TbAlertTriangle,
TbApps,
TbArrowLeft,
TbChevronRight,
TbDashboard,
TbDeviceMobile,
TbLogout,
TbSettings,
TbUserCircle,
TbSun,
TbMoon,
TbUser,
TbHistory,
TbBug
TbLogout,
TbMoon,
TbSettings,
TbSun,
TbUser,
TbUserCircle
} from 'react-icons/tb'
interface DashboardLayoutProps {
@@ -53,7 +54,7 @@ export function DashboardLayout({ children }: DashboardLayoutProps) {
{ label: 'Dashboard', icon: TbDashboard, to: '/dashboard' },
{ label: 'Applications', icon: TbApps, to: '/apps' },
{ label: 'Log Activity', icon: TbHistory, to: '/logs' },
{ label: 'Bug Reports', icon: TbBug, to: '/bug-reports' },
{ label: 'Error Reports', icon: TbAlertTriangle, to: '/bug-reports' },
{ label: 'Users', icon: TbUser, to: '/users' },
]