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
+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>