Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"vite": "^7.3.1"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@vitejs/plugin-react": "^5.1.4",
"axios": "^1.13.6",
"chart.js": "^4.5.1",
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import AnalyticsPage from './pages/AnalyticsPage';
import AiChatPage from './pages/AiChatPage';
import AiMindSweepPage from './pages/AiMindSweepPage';
import AiArsenalPage from './pages/AiArsenalPage';
import CodeInsightPage from './pages/CodeInsightPage';

const Layout = ({ children }) => {
const { pathname } = useLocation();
Expand Down Expand Up @@ -80,6 +81,7 @@ const AppRoutes = () => {
<Route path="/ai-chat" element={<P><AiChatPage /></P>} />
<Route path="/mind-sweep" element={<P><AiMindSweepPage /></P>} />
<Route path="/arsenal" element={<P><AiArsenalPage /></P>} />
<Route path="/codeinsight" element={<P><CodeInsightPage /></P>} />

<Route path="*" element={<Navigate to="/" replace />} />
</Routes>
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/components/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import API from '../services/api';
import {
BookOpen, LayoutDashboard, Users, ClipboardList, CheckSquare,
Award, Timer, GraduationCap, Calendar, BookMarked, Code2,
StickyNote, Target, Bell, LogOut, ChevronLeft, ChevronRight, Sparkles, Activity, Zap, TrendingUp, Wand2, Brain
StickyNote, Target, Bell, LogOut, ChevronLeft, ChevronRight, Sparkles, Activity, Zap, TrendingUp, Wand2, Brain, Cpu
} from 'lucide-react';

const mainLinks = [
Expand All @@ -28,6 +28,7 @@ const performanceLinks = [
];

const productivityLinks = [
{ to: '/codeinsight', icon: <Cpu size={18} />, label: 'CodeInsight AI' },
{ to: '/arsenal', icon: <Brain size={18} />, label: 'AI Arsenal' },
{ to: '/mind-sweep', icon: <Wand2 size={18} />, label: 'AI Mind Sweep' },
{ to: '/pomodoro', icon: <Timer size={18} />, label: 'Pomodoro' },
Expand Down
Loading