upd: bug list

Deskripsi:
- tampilan list bug error
- tampilan tambah bug
- connected to database; list and create

No Issues
This commit is contained in:
2026-04-13 15:17:46 +08:00
parent c0205ce2bf
commit 14a9e2c687
6 changed files with 578 additions and 3 deletions

View File

@@ -29,7 +29,8 @@ import {
TbSun,
TbMoon,
TbUser,
TbHistory
TbHistory,
TbBug
} from 'react-icons/tb'
interface DashboardLayoutProps {
@@ -52,6 +53,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: 'Users', icon: TbUser, to: '/users' },
]