= {
+ Mic,
+ Clock,
+ Apple,
+ Brain,
+};
+
+export function ProductSwitcher() {
+ const { productId, setProductId, products } = useProduct();
+
+ return (
+
+
+
+
+ );
+}
diff --git a/dashboards/admin-web/src/components/sidebar-nav.tsx b/dashboards/admin-web/src/components/sidebar-nav.tsx
index 3ca7ed0a..24c4a5ef 100644
--- a/dashboards/admin-web/src/components/sidebar-nav.tsx
+++ b/dashboards/admin-web/src/components/sidebar-nav.tsx
@@ -32,6 +32,7 @@ import {
import { cn } from '@/lib/utils';
import { useAuth } from '@/lib/auth-context';
import { useTheme } from '@/lib/theme-context';
+import { ProductSwitcher } from '@/components/product-switcher';
const navItems = [
{ href: '/', label: 'Dashboard', icon: LayoutDashboard },
@@ -100,6 +101,9 @@ export function SidebarNav() {
+ {/* Product Switcher */}
+
+
{/* Navigation */}