35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
|
|
import { BrowserRouter, Routes, Route } from "react-router-dom";
|
|
import Home from "./pages/Home";
|
|
import NotFound from "./pages/NotFound";
|
|
import Login from "./pages/Login";
|
|
import ProtectedRoute from "./components/ProtectedRoute";
|
|
import Dashboard from "./pages/dashboard/dashboard_page";
|
|
import DashboardLayout from "./pages/dashboard/dashboard_layout";
|
|
import ApiKeyPage from "./pages/dashboard/apikey/apikey_page";
|
|
import CredentialPage from "./pages/dashboard/credential/credential_page";
|
|
|
|
export default function AppRoutes() {
|
|
return (
|
|
<BrowserRouter>
|
|
<Routes>
|
|
<Route path="/" element={<Home />} />
|
|
<Route path="/login" element={<Login />} />
|
|
<Route element={<ProtectedRoute />}>
|
|
<Route path="/dashboard" element={<DashboardLayout />}>
|
|
<Route index element={<Dashboard />} />
|
|
<Route path="landing" element={<Dashboard />} />
|
|
<Route path="apikey" element={<ApiKeyPage />} />
|
|
<Route path="credential" element={<CredentialPage />} />
|
|
</Route>
|
|
</Route>
|
|
|
|
<Route path="*" element={<NotFound />} />
|
|
</Routes>
|
|
</BrowserRouter>
|
|
);
|
|
}
|
|
|
|
|
|
|