diff --git a/frontend/projects/shared/styles/variables.scss b/frontend/projects/shared/styles/variables.scss
index 12c95fcd6..fa70450e2 100644
--- a/frontend/projects/shared/styles/variables.scss
+++ b/frontend/projects/shared/styles/variables.scss
@@ -85,4 +85,11 @@
--ion-color-step-850: #dbdbdb;
--ion-color-step-900: #e7e7e7;
--ion-color-step-950: #f3f3f3;
+
+ --alt-red: #FF4961;
+ --alt-orange: #F89248;
+ --alt-yellow: #E5D53E;
+ --alt-green: #3DCF6F;
+ --alt-blue: #00A8A8;
+ --alt-purple: #9747FF;
}
\ No newline at end of file
diff --git a/frontend/projects/ui/src/app/app-routing.module.ts b/frontend/projects/ui/src/app/app-routing.module.ts
index 1ca762699..7d4b7dd2f 100644
--- a/frontend/projects/ui/src/app/app-routing.module.ts
+++ b/frontend/projects/ui/src/app/app-routing.module.ts
@@ -16,7 +16,13 @@ const routes: Routes = [
import('./pages/login/login.module').then(m => m.LoginPageModule),
},
{
- path: 'embassy',
+ path: 'home',
+ canActivate: [AuthGuard],
+ loadChildren: () =>
+ import('./pages/home/home.module').then(m => m.HomePageModule),
+ },
+ {
+ path: 'settings',
canActivate: [AuthGuard],
canActivateChild: [AuthGuard],
loadChildren: () =>
diff --git a/frontend/projects/ui/src/app/app.component.ts b/frontend/projects/ui/src/app/app.component.ts
index 5b142af2d..5eb870fef 100644
--- a/frontend/projects/ui/src/app/app.component.ts
+++ b/frontend/projects/ui/src/app/app.component.ts
@@ -1,5 +1,5 @@
import { Component, OnDestroy } from '@angular/core'
-import { merge, take } from 'rxjs'
+import { merge } from 'rxjs'
import { AuthService } from './services/auth.service'
import { SplitPaneTracker } from './services/split-pane.service'
import { PatchDataService } from './services/patch-data.service'
@@ -28,9 +28,9 @@ export class AppComponent implements OnDestroy {
) {}
ngOnInit() {
- this.serverNameService.name$
- .pipe(take(1))
- .subscribe(({ current }) => this.titleService.setTitle(current))
+ this.serverNameService.name$.subscribe(({ current }) =>
+ this.titleService.setTitle(current),
+ )
}
splitPaneVisible({ detail }: any) {
diff --git a/frontend/projects/ui/src/app/app/menu/menu.component.html b/frontend/projects/ui/src/app/app/menu/menu.component.html
index df11e72e3..4b1cf4140 100644
--- a/frontend/projects/ui/src/app/app/menu/menu.component.html
+++ b/frontend/projects/ui/src/app/app/menu/menu.component.html
@@ -1,7 +1,6 @@
-
+
-
Get started by installing your first service.
-
+