feat: routerlinks
All checks were successful
Node.js CI / Lint and Test (push) Successful in 56s

This commit is contained in:
2025-07-04 20:21:39 -07:00
parent 13dfd66800
commit a12f2b0315
4 changed files with 12 additions and 10 deletions

View File

@ -13,8 +13,8 @@
<li id="six">Answering your specific questions with a chat assistant</li>
</ul>
<div id="fade">
<a href="/products" class="btn">Browse Products</a>
<a href="/account" class="btn">Manage Account</a>
<a href="/settings" class="btn">Modify Settings</a>
<a href="/chat" class="btn">Chat with Hikari</a>
<a routerLink="/products" class="btn">Browse Products</a>
<a routerLink="/account" class="btn">Manage Account</a>
<a routerLink="/settings" class="btn">Modify Settings</a>
<a routerLink="/chat" class="btn">Chat with Hikari</a>
</div>

View File

@ -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",