feat: components

This commit is contained in:
2025-12-27 13:05:33 -08:00
parent 6bbcb4d8fa
commit d33422be37
45 changed files with 543 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { Component } from "@angular/core";
/**
* Renders the navigation bar.
*/
@Component({
imports: [],
selector: "app-nav",
styleUrl: "./nav.css",
templateUrl: "./nav.html",
})
export class Nav {
}