diff --git a/web/src/components/Dashboard.tsx b/web/src/components/Dashboard.tsx index 55c3930..ff8069e 100644 --- a/web/src/components/Dashboard.tsx +++ b/web/src/components/Dashboard.tsx @@ -11,7 +11,7 @@ import { CreateTimerModal } from './CreateTimerModal'; import { AlarmOverlay } from './AlarmOverlay'; import { requestNotificationPermission } from '@/lib/notifications'; import { formatTime, formatDate } from '@/lib/format'; -import { Plus, Clock, Bell, Keyboard, Sun, Moon, Settings, Eye, BarChart3, ListChecks, Cloud, CloudOff, Loader2 } from 'lucide-react'; +import { Plus, Clock, Bell, Keyboard, Sun, Moon, Settings, Eye, BarChart3, ListChecks, Cloud, CloudOff, Loader2, Bot, CalendarDays } from 'lucide-react'; import { useSync } from '@/lib/use-sync'; import { isEnabled as isFlagEnabled } from '@/lib/feature-flags'; import { BUILT_IN_CATEGORIES, matchesCategory } from '@/lib/categories'; @@ -185,6 +185,28 @@ export function Dashboard() { ) : null} + {isFlagEnabled('agent_inbox.enabled') ? ( + + + + ) : null} + {isFlagEnabled('day_planner.enabled') ? ( + + + + ) : null}