From ae2b06f7a702ea432b801985f534ade405d0299a Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sat, 14 Feb 2026 09:55:33 -0800 Subject: ui: redesign sidebar to match v1 aesthetic and fix navigation --- frontend/src/App.tsx | 42 ++---------------------------------------- 1 file changed, 2 insertions(+), 40 deletions(-) (limited to 'frontend/src/App.tsx') diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 1c023c4..732d9ef 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1,5 +1,5 @@ import React, { useEffect, useState } from 'react'; -import { BrowserRouter, Routes, Route, Navigate, useLocation, useNavigate } from 'react-router-dom'; +import { BrowserRouter, Routes, Route, Navigate, useLocation } from 'react-router-dom'; import Login from './components/Login'; import './App.css'; import { apiFetch } from './utils'; @@ -37,53 +37,15 @@ import FeedItems from './components/FeedItems'; import Settings from './components/Settings'; function Dashboard({ theme, setTheme }: { theme: string; setTheme: (t: string) => void }) { - const navigate = useNavigate(); const [sidebarVisible, setSidebarVisible] = useState(true); return (
-
-

setSidebarVisible(!sidebarVisible)} - style={{ cursor: 'pointer' }} - > - 🐱 -

- -
-- cgit v1.2.3