diff --git a/client/src/app/home/home.html b/client/src/app/home/home.html index 63372e4..28b1191 100644 --- a/client/src/app/home/home.html +++ b/client/src/app/home/home.html @@ -13,8 +13,8 @@
  • Answering your specific questions with a chat assistant
  • - Browse Products - Manage Account - Modify Settings - Chat with Hikari + Browse Products + Manage Account + Modify Settings + Chat with Hikari
    diff --git a/client/src/app/home/home.ts b/client/src/app/home/home.ts index 59e562a..8f38bd1 100644 --- a/client/src/app/home/home.ts +++ b/client/src/app/home/home.ts @@ -5,9 +5,10 @@ */ import { Component } from "@angular/core"; +import { RouterModule } from "@angular/router"; @Component({ - imports: [], + imports: [ RouterModule ], selector: "app-home", styleUrl: "./home.css", templateUrl: "./home.html", diff --git a/client/src/app/nav/nav.html b/client/src/app/nav/nav.html index 4170929..a602807 100644 --- a/client/src/app/nav/nav.html +++ b/client/src/app/nav/nav.html @@ -5,13 +5,13 @@ >
    - Products + Products
    - Account + Account
    - Settings + Settings
    - Chat + Chat
    diff --git a/client/src/app/nav/nav.ts b/client/src/app/nav/nav.ts index fdae55f..48429c9 100644 --- a/client/src/app/nav/nav.ts +++ b/client/src/app/nav/nav.ts @@ -6,9 +6,10 @@ import { CommonModule } from "@angular/common"; import { Component } from "@angular/core"; +import { RouterModule } from "@angular/router"; @Component({ - imports: [ CommonModule ], + imports: [ CommonModule, RouterModule ], selector: "app-nav", styleUrl: "./nav.css", templateUrl: "./nav.html",