start creating dashboard

This commit is contained in:
IluaAir
2025-10-10 23:58:57 +03:00
parent 31e8e355f3
commit 2c35b781dd
6 changed files with 363 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ import { LoginPage } from './pages/Login'
import { SignUp } from './pages/SignUp'
import { AuthLayout } from './layouts/AuthLayout'
import { Routes, Route, Navigate } from 'react-router'
import MenuDockVertical from './layouts/DashLayout'
function App() {
@@ -18,6 +19,11 @@ function App() {
<Route path="signup" element={<SignUp />} />
</Route>
<Route path="/dashboard" element={
// <div className="min-h-svh bg-background flex justify-start items-start">
<MenuDockVertical />
// </div>
} />
<Route path="*" element={<Navigate to="/auth/login" replace />} />
</Routes>
)