feat: initial prototype works

I can log in and create a book! Woo!
This commit is contained in:
2026-02-04 12:17:05 -08:00
parent e167a17bd9
commit b6d66d34cb
44 changed files with 3695 additions and 493 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';
import { NxWelcome } from './nx-welcome';
import { HeaderComponent } from './components/header/header.component';
@Component({
imports: [NxWelcome, RouterModule],
imports: [RouterModule, HeaderComponent],
selector: 'app-root',
templateUrl: './app.html',
styleUrl: './app.scss',
})
export class App {
protected title = 'frontend';
protected title = 'Naomi\'s Library';
}