feat: set up nav bar and news ticker

This commit is contained in:
2025-12-27 14:59:20 -08:00
parent e5e01c865e
commit 8df1c00969
9 changed files with 66 additions and 6 deletions
+4
View File
@@ -0,0 +1,4 @@
main {
margin-top: 120px; /* Space for nav and ticker */
}
+3
View File
@@ -1,4 +1,7 @@
<div class="fixed top-0 left-0 w-full h-full z-30">
<app-nav></app-nav>
<app-ticker></app-ticker>
</div>
<app-disclaimer></app-disclaimer>
<main>
<router-outlet></router-outlet>
+2 -1
View File
@@ -8,12 +8,13 @@ import { RouterOutlet } from "@angular/router";
import { Disclaimer } from "./disclaimer/disclaimer";
import { Footer } from "./footer/footer";
import { Nav } from "./nav/nav";
import { Ticker } from "./ticker/ticker";
/**
* The root component for the application.
*/
@Component({
imports: [ RouterOutlet, Footer, Nav, Disclaimer ],
imports: [ RouterOutlet, Footer, Nav, Disclaimer, Ticker ],
selector: "app-root",
styleUrl: "./app.css",
templateUrl: "./app.html",
+4
View File
@@ -0,0 +1,4 @@
nav {
background-color: var(--color-secondary);
color: var(--color-primary);
}
+13 -1
View File
@@ -1 +1,13 @@
<p>nav works!</p>
<nav class="w-full z-30 p-2 flex justify-between items-center">
<div>
<a routerLink="/"><p>NHCarrigan</p></a>
</div>
<ul class="flex gap-4 list-image-none">
<a routerLink="/about"><li>About</li></a>
<a routerLink="/handbook"><li>Handbook</li></a>
<a routerLink="/bulletin"><li>Bulletin</li></a>
<a routerLink="/faq"><li>FAQ</li></a>
<a routerLink="/reviews"><li>Reviews</li></a>
<a routerLink="/staff"><li>Staff</li></a>
</ul>
</nav>
+2 -1
View File
@@ -4,12 +4,13 @@
* @author Naomi Carrigan
*/
import { Component } from "@angular/core";
import { RouterLink } from "@angular/router";
/**
* Renders the navigation bar.
*/
@Component({
imports: [],
imports: [ RouterLink ],
selector: "app-nav",
styleUrl: "./nav.css",
templateUrl: "./nav.html",
+16
View File
@@ -0,0 +1,16 @@
.ticker-bg {
background-color: var(--color-ticker);
}
.ticker-scroll {
animation: scroll-horizontal 60s linear infinite;
}
@keyframes scroll-horizontal {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
+15 -1
View File
@@ -1 +1,15 @@
<p>ticker works!</p>
<div class="w-full overflow-hidden whitespace-nowrap z-30 py-2 ticker-bg">
<div class="inline-block whitespace-nowrap ticker-scroll">
@for (phrase of phrases; track phrase) {
<span class="inline-block m-0 p-0 whitespace-nowrap">{{ phrase }}</span>
<span class="inline-block mx-4 opacity-70"></span>
}
<!-- Duplicate content for seamless loop -->
<span aria-hidden="true">
@for (phrase of phrases; track phrase) {
<span class="inline-block m-0 p-0 whitespace-nowrap">{{ phrase }}</span>
<span class="inline-block mx-4 opacity-70"></span>
}
</span>
</div>
</div>
+6 -1
View File
@@ -15,5 +15,10 @@ import { Component } from "@angular/core";
templateUrl: "./ticker.html",
})
export class Ticker {
protected readonly phrases = [
"[UPDATE]: Office will be closed this Tuesday for the Lunar Eclipse. (Religious Holiday).",
"[MEMO]: Please stop asking the Bodyguard for fashion tips. She is working.",
"[TECH]: Patch 4.0.1 deployed. Fixed a bug where the AI started whispering.",
"[NOTICE]: We are aware of the \"howling\" coming from the breakroom. Amari is watching a sad movie. It is under control.",
];
}