- {navigationItems.map((item) => (
-
{
- e.preventDefault();
- setShowUserMenu(true);
- } : undefined}
- className={`flex flex-col items-center justify-center p-2 rounded-xl transition-all duration-200 ${
- isActive(item.href) && item.href !== '/menu'
- ? 'text-primary-600 dark:text-primary-400 bg-primary-50 dark:bg-primary-900/30'
- : 'text-surface-600 dark:text-surface-400 hover:text-surface-900 dark:hover:text-white hover:bg-surface-100 dark:hover:bg-surface-800'
- }`}
- >
-
- {isActive(item.href) && item.activeIcon ? item.activeIcon : item.icon}
-
-
{item.name}
-
- ))}
+
+ {/* Home */}
+
+
+ {isActive('/dashboard') ? (
+
+ ) : (
+
+ )}
+
+
Home
+
+
+ {/* Cards */}
+
+
+ {isActive('/cards') ? (
+
+ ) : (
+
+ )}
+
+
Cards
+
+
+ {/* Scanner - Special Raised Button */}
+
+
+
Scanner
+
+
+ {/* Collections */}
+
+
+ {isActive('/collections') ? (
+
+ ) : (
+
+ )}
+
+
Collections
+
+
+ {/* More */}
+