feat(web): vibe coding pazzo
This commit is contained in:
@@ -1,13 +1,23 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { HomeComponent } from './home/home.component';
|
||||
import { BasicQuoteComponent } from './quote/basic-quote/basic-quote.component';
|
||||
import { AdvancedQuoteComponent } from './quote/advanced-quote/advanced-quote.component';
|
||||
import { ContactComponent } from './contact/contact.component';
|
||||
|
||||
export const routes: Routes = [
|
||||
{ path: '', component: HomeComponent },
|
||||
{ path: 'quote/basic', component: BasicQuoteComponent },
|
||||
{ path: 'quote/advanced', component: AdvancedQuoteComponent },
|
||||
{ path: 'contact', component: ContactComponent },
|
||||
{ path: '**', redirectTo: '' }
|
||||
{
|
||||
path: '',
|
||||
loadComponent: () => import('./core/layout/layout.component').then(m => m.LayoutComponent),
|
||||
children: [
|
||||
{ path: '', redirectTo: 'cal', pathMatch: 'full' },
|
||||
{
|
||||
path: 'cal',
|
||||
loadChildren: () => import('./features/calculator/calculator.routes').then(m => m.CALCULATOR_ROUTES)
|
||||
},
|
||||
{
|
||||
path: 'shop',
|
||||
loadChildren: () => import('./features/shop/shop.routes').then(m => m.SHOP_ROUTES)
|
||||
},
|
||||
{
|
||||
path: 'about',
|
||||
loadChildren: () => import('./features/about/about.routes').then(m => m.ABOUT_ROUTES)
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user