feat(web): home component
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 12s
Build, Test and Deploy / build-and-push (push) Successful in 20s
Build, Test and Deploy / deploy (push) Successful in 4s

This commit is contained in:
2026-02-02 17:41:20 +01:00
parent 2c658d00c1
commit 0a538b0d88
2 changed files with 184 additions and 1 deletions

View File

@@ -5,7 +5,10 @@ export const routes: Routes = [
path: '',
loadComponent: () => import('./core/layout/layout.component').then(m => m.LayoutComponent),
children: [
{ path: '', redirectTo: 'cal', pathMatch: 'full' },
{
path: '',
loadComponent: () => import('./features/home/home.component').then(m => m.HomeComponent)
},
{
path: 'cal',
loadChildren: () => import('./features/calculator/calculator.routes').then(m => m.CALCULATOR_ROUTES)