diff --git a/src/components/AppLayout.tsx b/src/components/AppLayout.tsx index 6dc61fe..24e23aa 100644 --- a/src/components/AppLayout.tsx +++ b/src/components/AppLayout.tsx @@ -53,9 +53,9 @@ const adminNavItems: NavItem[] = [ ]; const mobileUserNav: NavItem[] = [ - { label: 'Home', href: '/dashboard', icon: Home }, - { label: 'Kelas', href: '/access', icon: BookOpen }, - { label: 'Pesanan', href: '/orders', icon: Receipt }, + { label: 'Dashboard', href: '/dashboard', icon: LayoutDashboard }, + { label: 'Akses', href: '/access', icon: BookOpen }, + { label: 'Order', href: '/orders', icon: Receipt }, { label: 'Profil', href: '/profile', icon: User }, ]; @@ -63,7 +63,7 @@ const mobileAdminNav: NavItem[] = [ { label: 'Dashboard', href: '/admin', icon: LayoutDashboard }, { label: 'Produk', href: '/admin/products', icon: Package }, { label: 'Order', href: '/admin/orders', icon: Receipt }, - { label: 'Pengguna', href: '/admin/members', icon: Users }, + { label: 'Member', href: '/admin/members', icon: Users }, ]; interface AppLayoutProps {