diff --git a/src/components/InitialSyncGate.tsx b/src/components/InitialSyncGate.tsx index 6d8c3b40..3455074f 100644 --- a/src/components/InitialSyncGate.tsx +++ b/src/components/InitialSyncGate.tsx @@ -194,7 +194,7 @@ function SyncScreen({ phase }: { phase: SyncPhase }) { // --------------------------------------------------------------------------- /** Extra-kind IDs shown in the onboarding content picker, in display order. */ -const ONBOARDING_CONTENT_IDS = ['events', 'vines', 'colors', 'decks', 'treasures', 'webxdc']; +const ONBOARDING_CONTENT_IDS = ['vines', 'colors', 'decks', 'treasures', 'webxdc']; /** Onboarding content kinds derived from EXTRA_KINDS — no separate data to maintain. */ const CONTENT_KINDS = ONBOARDING_CONTENT_IDS.flatMap((id) => { diff --git a/src/lib/sidebarItems.tsx b/src/lib/sidebarItems.tsx index ef89473d..6176010a 100644 --- a/src/lib/sidebarItems.tsx +++ b/src/lib/sidebarItems.tsx @@ -1,7 +1,7 @@ import { Bell, Search, TrendingUp, User, Bookmark, Settings, SwatchBook, Palette, Clapperboard, BarChart3, PartyPopper, BookOpen, BookMarked, Sparkles, Blocks, - MessageSquare, Repeat2, MessageSquareMore, Mic, Smile, Bot, SmilePlus, Camera, Film, Earth, CalendarDays, + MessageSquare, Repeat2, MessageSquareMore, Mic, Smile, Bot, SmilePlus, Camera, Film, Earth, Calendar, Music, Podcast, } from 'lucide-react'; import { PlanetIcon } from '@/components/icons/PlanetIcon'; @@ -55,7 +55,7 @@ export const SIDEBAR_ITEMS: SidebarItemDef[] = [ { id: 'theme', label: 'Vibe', path: '/settings/theme', icon: SwatchBook }, { id: 'ai-chat', label: 'AI Chat', path: '/ai-chat', icon: Bot, requiresAuth: true }, // Content types - { id: 'events', label: 'Events', path: '/events', icon: CalendarDays }, + { id: 'events', label: 'Events', path: '/events', icon: Calendar }, { id: 'photos', label: 'Photos', path: '/photos', icon: Camera }, { id: 'videos', label: 'Videos', path: '/videos', icon: Film }, { id: 'articles', label: 'Articles', path: '/articles', icon: BookOpen },