Browse Source

Fix homepage title

Chocobozzz 2 years ago
parent
commit
2e694a3b98
1 changed files with 6 additions and 1 deletions
  1. 6 1
      client/src/app/+home/home-routing.module.ts

+ 6 - 1
client/src/app/+home/home-routing.module.ts

@@ -5,7 +5,12 @@ import { HomeComponent } from './home.component'
 const homeRoutes: Routes = [
   {
     path: '',
-    component: HomeComponent
+    component: HomeComponent,
+    data: {
+      meta: {
+        title: $localize`Homepage`
+      }
+    }
   }
 ]