From ca97d674b686c5d97dfeeaa709e142fc53d78e50 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sun, 1 Mar 2026 23:14:36 -0600 Subject: [PATCH] Move Books higher in sidebar, right after Articles, with distinct icon --- src/lib/sidebarItems.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/sidebarItems.tsx b/src/lib/sidebarItems.tsx index fe405ca2..fa87774b 100644 --- a/src/lib/sidebarItems.tsx +++ b/src/lib/sidebarItems.tsx @@ -1,6 +1,6 @@ import { Bell, Search, TrendingUp, User, Bookmark, Settings, SwatchBook, Palette, - Clapperboard, BarChart3, PartyPopper, BookOpen, Sparkles, Blocks, + Clapperboard, BarChart3, PartyPopper, BookOpen, BookMarked, Sparkles, Blocks, MessageSquare, Repeat2, MessageSquareMore, Mic, Smile, Bot, SmilePlus, Camera, Film, Globe, CalendarDays, } from 'lucide-react'; import { PlanetIcon } from '@/components/icons/PlanetIcon'; @@ -50,6 +50,7 @@ export const SIDEBAR_ITEMS: SidebarItemDef[] = [ { id: 'photos', label: 'Photos', path: '/photos', icon: Camera }, { id: 'videos', label: 'Videos', path: '/videos', icon: Film }, { id: 'articles', label: 'Articles', path: '/articles', icon: BookOpen }, + { id: 'books', label: 'Books', path: '/books', icon: BookMarked }, { id: 'vines', label: 'Vines', path: '/vines', icon: Clapperboard }, { id: 'webxdc', label: 'Webxdc', path: '/webxdc', icon: Blocks }, @@ -61,7 +62,6 @@ export const SIDEBAR_ITEMS: SidebarItemDef[] = [ { id: 'treasures', label: 'Treasures', path: '/treasures', icon: ChestIcon }, { id: 'emoji-packs', label: 'Emoji Packs', path: '/emoji-packs', icon: SmilePlus }, { id: 'world', label: 'World', path: '/world', icon: Globe }, - { id: 'books', label: 'Books', path: '/books', icon: BookOpen }, ]; /** Set of all known sidebar item IDs for quick lookup. */