This commit is contained in:
2025-08-06 21:00:51 +02:00
parent 2c8f1bcca0
commit b288b29e35
6 changed files with 464 additions and 1050 deletions
+7
View File
@@ -9,6 +9,11 @@ import ResetPassword from "./pages/Auth/ResetPassword"
import Landingpage from "./pages/Landing/Landingpage"
import Home from "./pages/Landing/Home"
import DeckManagerPage from "./pages/Decks/DeckManagerPage"
import CompanyHub from "./pages/Companies/Companies"
function App() {
const [isMobile, setIsMobile] = useState(false)
@@ -48,6 +53,8 @@ function App() {
<Route path="/" element={<Landingpage />} />
<Route path="/home" element={<Home />} />
<Route path="/decks" element={<DeckManagerPage />} />
<Route path="/companies" element={<CompanyHub />} />
{/* Add more routes as needed */}
</Routes>
</Router>