generated from nhcarrigan/template
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
68f9043679
|
|||
e5b77b8821
|
|||
dcc3082f0f
|
|||
e614df8558
|
|||
0ebe55ee0e
|
@ -10,7 +10,7 @@ import {
|
|||||||
provideZoneChangeDetection,
|
provideZoneChangeDetection,
|
||||||
} from "@angular/core";
|
} from "@angular/core";
|
||||||
import { provideRouter } from "@angular/router";
|
import { provideRouter } from "@angular/router";
|
||||||
import { routes } from "./app.routes.js";
|
import { routes } from "./app.routes";
|
||||||
|
|
||||||
export const appConfig: ApplicationConfig = {
|
export const appConfig: ApplicationConfig = {
|
||||||
providers: [
|
providers: [
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
<li id="six">Answering your specific questions with a chat assistant</li>
|
<li id="six">Answering your specific questions with a chat assistant</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div id="fade">
|
<div id="fade">
|
||||||
<a routerLink="/products" class="btn">Browse Products</a>
|
<a href="/products" class="btn">Browse Products</a>
|
||||||
<a routerLink="/account" class="btn">Manage Account</a>
|
<a href="/account" class="btn">Manage Account</a>
|
||||||
<a routerLink="/settings" class="btn">Modify Settings</a>
|
<a href="/settings" class="btn">Modify Settings</a>
|
||||||
<a routerLink="/chat" class="btn">Chat with Hikari</a>
|
<a href="/chat" class="btn">Chat with Hikari</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -5,10 +5,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { Component } from "@angular/core";
|
import { Component } from "@angular/core";
|
||||||
import { RouterModule } from "@angular/router";
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
imports: [ RouterModule ],
|
imports: [],
|
||||||
selector: "app-home",
|
selector: "app-home",
|
||||||
styleUrl: "./home.css",
|
styleUrl: "./home.css",
|
||||||
templateUrl: "./home.html",
|
templateUrl: "./home.html",
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
></a
|
></a
|
||||||
>
|
>
|
||||||
<div [class]="dropdownClass">
|
<div [class]="dropdownClass">
|
||||||
<a routerLink="/products" class="nav-link">Products</a>
|
<a href="/products" class="nav-link">Products</a>
|
||||||
<hr />
|
<hr />
|
||||||
<a routerLink="/account" class="nav-link">Account</a>
|
<a href="/account" class="nav-link">Account</a>
|
||||||
<hr />
|
<hr />
|
||||||
<a routerLink="/settings" class="nav-link">Settings</a>
|
<a href="/settings" class="nav-link">Settings</a>
|
||||||
<hr />
|
<hr />
|
||||||
<a routerLink="/chat" class="nav-link">Chat</a>
|
<a href="/chat" class="nav-link">Chat</a>
|
||||||
<hr />
|
<hr />
|
||||||
</div>
|
</div>
|
||||||
<i class="fa-solid fa-bars" *ngIf="!navOpen" (click)="toggleNav()"></i>
|
<i class="fa-solid fa-bars" *ngIf="!navOpen" (click)="toggleNav()"></i>
|
||||||
|
@ -6,10 +6,9 @@
|
|||||||
|
|
||||||
import { CommonModule } from "@angular/common";
|
import { CommonModule } from "@angular/common";
|
||||||
import { Component } from "@angular/core";
|
import { Component } from "@angular/core";
|
||||||
import { RouterModule } from "@angular/router";
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
imports: [ CommonModule, RouterModule ],
|
imports: [ CommonModule ],
|
||||||
selector: "app-nav",
|
selector: "app-nav",
|
||||||
styleUrl: "./nav.css",
|
styleUrl: "./nav.css",
|
||||||
templateUrl: "./nav.html",
|
templateUrl: "./nav.html",
|
||||||
|
Reference in New Issue
Block a user