diff --git a/src/components/AITutor/AITutorSidebar.tsx b/src/components/AITutor/AITutorSidebar.tsx index 7ebc5006e..0f4efaf2a 100644 --- a/src/components/AITutor/AITutorSidebar.tsx +++ b/src/components/AITutor/AITutorSidebar.tsx @@ -1,10 +1,4 @@ -import { - ChevronLeft, - PlusCircle, - BookOpen, - Compass, - CircleDotIcon, -} from 'lucide-react'; +import { BookOpen, Bot, Compass, Plus, Star } from 'lucide-react'; type AITutorSidebarProps = { activeTab: AITutorTab; @@ -15,7 +9,7 @@ const sidebarItems = [ key: 'new', label: 'New Course', href: '/ai', - icon: PlusCircle, + icon: Plus, }, { key: 'courses', @@ -27,7 +21,7 @@ const sidebarItems = [ key: 'staff-picks', label: 'Staff Picks', href: '/ai/staff-picks', - icon: CircleDotIcon, + icon: Star, }, { key: 'explore', @@ -43,38 +37,34 @@ export function AITutorSidebar(props: AITutorSidebarProps) { const { activeTab } = props; return ( -
+