5 Commits

Author SHA1 Message Date
68f9043679 chore: format html
All checks were successful
Node.js CI / Lint and Test (pull_request) Successful in 1m1s
2025-07-04 19:59:16 -07:00
e5b77b8821 feat: build out product directory 2025-07-04 19:58:18 -07:00
dcc3082f0f feat: add 404 page 2025-07-04 15:50:56 -07:00
e614df8558 feat: create navigation menu 2025-07-04 15:25:25 -07:00
0ebe55ee0e feat: create home page 2025-07-04 15:03:36 -07:00
5 changed files with 11 additions and 13 deletions

View File

@ -10,7 +10,7 @@ import {
provideZoneChangeDetection,
} from "@angular/core";
import { provideRouter } from "@angular/router";
import { routes } from "./app.routes.js";
import { routes } from "./app.routes";
export const appConfig: ApplicationConfig = {
providers: [

View File

@ -13,8 +13,8 @@
<li id="six">Answering your specific questions with a chat assistant</li>
</ul>
<div id="fade">
<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>
<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>
</div>

View File

@ -5,10 +5,9 @@
*/
import { Component } from "@angular/core";
import { RouterModule } from "@angular/router";
@Component({
imports: [ RouterModule ],
imports: [],
selector: "app-home",
styleUrl: "./home.css",
templateUrl: "./home.html",

View File

@ -5,13 +5,13 @@
></a
>
<div [class]="dropdownClass">
<a routerLink="/products" class="nav-link">Products</a>
<a href="/products" class="nav-link">Products</a>
<hr />
<a routerLink="/account" class="nav-link">Account</a>
<a href="/account" class="nav-link">Account</a>
<hr />
<a routerLink="/settings" class="nav-link">Settings</a>
<a href="/settings" class="nav-link">Settings</a>
<hr />
<a routerLink="/chat" class="nav-link">Chat</a>
<a href="/chat" class="nav-link">Chat</a>
<hr />
</div>
<i class="fa-solid fa-bars" *ngIf="!navOpen" (click)="toggleNav()"></i>

View File

@ -6,10 +6,9 @@
import { CommonModule } from "@angular/common";
import { Component } from "@angular/core";
import { RouterModule } from "@angular/router";
@Component({
imports: [ CommonModule, RouterModule ],
imports: [ CommonModule ],
selector: "app-nav",
styleUrl: "./nav.css",
templateUrl: "./nav.html",