MOVE: Theme to quick settings

This commit is contained in:
EvanLin3141
2025-02-09 17:19:34 +00:00
parent 8942298b38
commit 4cc48fe0b2
9 changed files with 119 additions and 59 deletions

View File

@@ -8,7 +8,6 @@ import NotFoundPage from "./pages/NotFoundPage";
import UserPage from "./pages/UserPage";
import ResetPasswordPage from "./pages/ResetPasswordPage";
import CategoryPage from "./pages/CategoryPage";
import ForgotPasswordForm from "./components/Auth/ForgotPasswordForm";
function App() {
const [isLoggedIn, setIsLoggedIn] = useState(false);
@@ -44,7 +43,6 @@ function App() {
<Route path="/:streamerName" element={<StreamerRoute />} />
<Route path="/user/:username" element={<UserPage />} />
<Route path="/reset_password/:token" element={<ResetPasswordPage />}></Route>
<Route path="/forgot_password/" element={<ForgotPasswordForm />}></Route>
<Route path="/category/:category_name" element={<CategoryPage />}></Route>
<Route path="/404" element={<NotFoundPage />} />