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
+22 -1
View File
@@ -1,3 +1,24 @@
import { Route } from '@angular/router';
export const appRoutes: Route[] = [];
export const appRoutes: Route[] = [
{
path: '',
loadComponent: () => import('./components/home/home.component').then(m => m.HomeComponent)
},
{
path: 'games',
loadComponent: () => import('./components/games/games-list.component').then(m => m.GamesListComponent)
},
{
path: 'books',
loadComponent: () => import('./components/books/books-list.component').then(m => m.BooksListComponent)
},
{
path: 'music',
loadComponent: () => import('./components/music/music-list.component').then(m => m.MusicListComponent)
},
{
path: '**',
redirectTo: ''
}
];