Use PhosphorIcons instead of FontAwesome

Start implementation of setup process
This commit is contained in:
grimsi
2024-03-10 00:51:05 +01:00
parent d5c0493e35
commit 647ac97309
12 changed files with 182 additions and 94 deletions
+5
View File
@@ -3,6 +3,7 @@ import {createBrowserRouter, RouteObject} from 'react-router-dom';
import LoginView from "Frontend/views/LoginView";
import MainLayout from "Frontend/views/MainLayout";
import TestView from "Frontend/views/TestView";
import SetupView from "Frontend/views/SetupView";
export const routes = protectRoutes([
{
@@ -15,6 +16,10 @@ export const routes = protectRoutes([
{
path: '/login',
element: <LoginView/>
},
{
path: '/setup',
element: <SetupView/>
}
]) as RouteObject[];