style(navigation): implement basic navigation bar

This commit is contained in:
2025-08-21 04:03:53 +02:00
parent ebb45d2ea0
commit 3406450eba
16 changed files with 2319 additions and 262 deletions
+7 -1
View File
@@ -1,3 +1,9 @@
import { Routes } from '@angular/router';
import { Home } from './pages/home/home';
import { About } from './pages/about/about';
export const routes: Routes = [];
export const routes: Routes = [
{ path: '', component: Home },
{ path: 'about', component: About },
{ path: '**', redirectTo: '', pathMatch: 'full' },
];