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

0
src/app/about/about.css Normal file
View File

1
src/app/about/about.html Normal file
View File

@ -0,0 +1 @@
<p>about works!</p>

11
src/app/about/about.ts Normal file
View File

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-about',
imports: [],
templateUrl: './about.html',
styleUrl: './about.css'
})
export class About {
}