Index: frontend/src/App.jsx
===================================================================
--- frontend/src/App.jsx	(revision 0427f599f15f08425a193b5b366fd15cc0a95f42)
+++ frontend/src/App.jsx	(revision 72053b5fc3ff291757af1cdd64e8fdfcb9e9b17d)
@@ -1,77 +1,35 @@
-import { Navigate, Route, Routes } from "react-router-dom";
-import { clearAuthSession, getAuthToken, isTokenExpired } from "./utils/authSession";
+import { useState } from 'react'
+import reactLogo from './assets/react.svg'
+import viteLogo from '/vite.svg'
+import './App.css'
 
-import LandingPage from "./pages/LandingPage/LandingPage.jsx";
-import Login from "./pages/Login/Login.jsx";
-import Register from "./pages/Register/Register.jsx";
-import DashboardLayout from "./pages/Dashboard/DashboardLayout.jsx";
-import ControlCenter from "./pages/Dashboard/pages/ControlCenter/ControlCenter.jsx";
-import Training from "./pages/Dashboard/pages/Training/Training.jsx";
-import TrainingTracking from "./pages/Dashboard/pages/Training/TrainingTracking.jsx";
-import NewTrainingSession from "./pages/Dashboard/pages/Training/NewTrainingSession.jsx";
-import Weight from "./pages/Dashboard/pages/Weight/Weight.jsx";
-import WeightTracking from "./pages/Dashboard/pages/Weight/WeightTracking.jsx";
-import NewWeightIntake from "./pages/Dashboard/pages/Weight/NewWeightIntake.jsx";
-import Finance from "./pages/Dashboard/pages/Finance/Finance.jsx";
-import FinanceTracking from "./pages/Dashboard/pages/Finance/FinanceTracking.jsx";
-import NewIncome from "./pages/Dashboard/pages/Finance/NewIncome.jsx";
-import Investing from "./pages/Dashboard/pages/Investing/Investing.jsx";
-import InvestingTracking from "./pages/Dashboard/pages/Investing/InvestingTracking.jsx";
-import NewInvestment from "./pages/Dashboard/pages/Investing/NewInvestment.jsx";
-import Discipline from "./pages/Dashboard/pages/Discipline/Discipline.jsx";
-import DisciplineTracking from "./pages/Dashboard/pages/Discipline/DisciplineTracking.jsx";
-import CustomCategoryKanban from "./pages/Dashboard/pages/CustomCategory/CustomCategoryKanban.jsx";
+function App() {
+  const [count, setCount] = useState(0)
 
-function RequireAuth({ children }) {
-  const token = getAuthToken();
-  if (token && isTokenExpired(token)) {
-    clearAuthSession();
-    return <Navigate to="/login" replace />;
-  }
-  if (!token) return <Navigate to="/login" replace />;
-  return children;
+  return (
+    <>
+      <div>
+        <a href="https://vite.dev" target="_blank">
+          <img src={viteLogo} className="logo" alt="Vite logo" />
+        </a>
+        <a href="https://react.dev" target="_blank">
+          <img src={reactLogo} className="logo react" alt="React logo" />
+        </a>
+      </div>
+      <h1>Vite + React</h1>
+      <div className="card">
+        <button onClick={() => setCount((count) => count + 1)}>
+          count is {count}
+        </button>
+        <p>
+          Edit <code>src/App.jsx</code> and save to test HMR
+        </p>
+      </div>
+      <p className="read-the-docs">
+        Click on the Vite and React logos to learn more
+      </p>
+    </>
+  )
 }
 
-function App() {
-  return (
-    <div data-theme="forest" className="min-h-screen w-full">
-      <Routes>
-        <Route path="/" element={<LandingPage />} />
-        <Route path="/login" element={<Login />} />
-        <Route path="/register" element={<Register />} />
-        <Route
-          path="/dashboard"
-          element={
-            <RequireAuth>
-              <DashboardLayout />
-            </RequireAuth>
-          }
-        >
-          <Route index element={<Navigate to="control-center" replace />} />
-          <Route path="control-center" element={<ControlCenter />} />
-          <Route path="training" element={<Training />} />
-          <Route path="training/tracking" element={<TrainingTracking />} />
-          <Route
-            path="training/sessions/new"
-            element={<NewTrainingSession />}
-          />
-          <Route path="weight" element={<Weight />} />
-          <Route path="weight/tracking" element={<WeightTracking />} />
-          <Route path="weight/intakes/new" element={<NewWeightIntake />} />
-          <Route path="finance" element={<Finance />} />
-           <Route path="finance/tracking" element={<FinanceTracking />} />
-           <Route path="finance/incomes/new" element={<NewIncome />} />
-          <Route path="investing" element={<Investing />} />
-          <Route path="investing/tracking" element={<InvestingTracking />} />
-          <Route path="investing/assets/new" element={<NewInvestment />} />
-          <Route path="discipline" element={<Discipline />} />
-           <Route path="discipline/tracking" element={<DisciplineTracking />} />
-           <Route path="custom/:customTrackingId" element={<CustomCategoryKanban />} />
-        </Route>
-        <Route path="*" element={<Navigate to="/" replace />} />
-      </Routes>
-    </div>
-  );
-}
-
-export default App;
+export default App
