Fix mobile bottom navigation wording to match desktop sidebar

Updated mobile navigation labels to be consistent with desktop sidebar:
- User nav: "Home" → "Dashboard", "Kelas" → "Akses", "Pesanan" → "Order"
- Admin nav: "Pengguna" → "Member" (matches sidebar exactly)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
dwindown
2025-12-28 01:14:29 +07:00
parent a8341a42ee
commit 952bb209cf

View File

@@ -53,9 +53,9 @@ const adminNavItems: NavItem[] = [
]; ];
const mobileUserNav: NavItem[] = [ const mobileUserNav: NavItem[] = [
{ label: 'Home', href: '/dashboard', icon: Home }, { label: 'Dashboard', href: '/dashboard', icon: LayoutDashboard },
{ label: 'Kelas', href: '/access', icon: BookOpen }, { label: 'Akses', href: '/access', icon: BookOpen },
{ label: 'Pesanan', href: '/orders', icon: Receipt }, { label: 'Order', href: '/orders', icon: Receipt },
{ label: 'Profil', href: '/profile', icon: User }, { label: 'Profil', href: '/profile', icon: User },
]; ];
@@ -63,7 +63,7 @@ const mobileAdminNav: NavItem[] = [
{ label: 'Dashboard', href: '/admin', icon: LayoutDashboard }, { label: 'Dashboard', href: '/admin', icon: LayoutDashboard },
{ label: 'Produk', href: '/admin/products', icon: Package }, { label: 'Produk', href: '/admin/products', icon: Package },
{ label: 'Order', href: '/admin/orders', icon: Receipt }, { label: 'Order', href: '/admin/orders', icon: Receipt },
{ label: 'Pengguna', href: '/admin/members', icon: Users }, { label: 'Member', href: '/admin/members', icon: Users },
]; ];
interface AppLayoutProps { interface AppLayoutProps {