feat(search): implement search functionality with results page and routing

This commit is contained in:
2026-07-24 14:10:26 -03:00
parent 5d5146d784
commit 79a6edc3f3
12 changed files with 367 additions and 9 deletions

View File

@@ -45,6 +45,11 @@ export const routes: Routes = [
},
],
},
{
path: 'buscar',
loadComponent: () =>
import('./pages/search-page/search-page.component').then((m) => m.SearchPageComponent),
},
{
path: 'producto/:id',
canActivate: [hasMenuGuard('product.detail')],