feat: empty components, functional nav

This commit is contained in:
2025-07-15 12:47:49 -07:00
parent cb0da16c0b
commit 168f9b9ad5
36 changed files with 8819 additions and 7 deletions

18
src/app/nav/nav.ts Normal file
View File

@ -0,0 +1,18 @@
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { Component } from "@angular/core";
import { RouterModule } from "@angular/router";
@Component({
imports: [ RouterModule ],
selector: "app-nav",
styleUrl: "./nav.css",
templateUrl: "./nav.html",
})
export class Nav {
}