phase-8: add config-driven public website runtime route and dynamic layout

This commit is contained in:
sdarbinyan
2026-07-03 01:38:26 +04:00
parent 92c2f26780
commit 69d2f31a9e
4 changed files with 126 additions and 0 deletions

View File

@@ -27,6 +27,10 @@ const coreRoutes: Routes = [
{
path: 'cart',
loadComponent: () => import('./pages/cart/cart.component').then(m => m.CartComponent)
},
{
path: 'platform',
loadComponent: () => import('./pages/public/platform-home.component').then(m => m.PlatformHomeComponent)
}
];