Working version(some)

This commit is contained in:
2025-07-06 22:13:09 +05:00
parent 12f7ea8d1c
commit 4717132b05
8 changed files with 1164 additions and 94 deletions

View File

@ -5,7 +5,7 @@ import {
Navigate,
} from 'react-router-dom';
import Login from './pages/Login';
import Dashboard from './pages/Dashboard';
import LaunchPage from './pages/LaunchPage';
import { ReactNode, useEffect, useState } from 'react';
import './App.css';
@ -66,7 +66,7 @@ const App = () => {
path="/"
element={
<AuthCheck>
<Dashboard />
<LaunchPage />
</AuthCheck>
}
/>