feat: implement store routing and product detail page skeleton

This commit is contained in:
2026-06-30 09:10:15 -03:00
parent b8f4d06caa
commit 79d4de6c04
6 changed files with 43 additions and 1 deletions

View File

@@ -11,6 +11,13 @@ export const routes: Routes = [
{
path: '',
component: StoreHomePageComponent
},
{
path: 'producto/:id',
loadComponent: () =>
import('./pages/product-detail-page/product-detail-page.component').then(
(m) => m.ProductDetailPageComponent
)
}
]
}