feat(contact-page): add route for contact page with menu guard

This commit is contained in:
2026-07-24 09:13:12 -03:00
parent 63ae02df22
commit 656e41d189
2 changed files with 10 additions and 0 deletions

View File

@@ -702,6 +702,8 @@
<app-location-map
[locations]="mapLocations"
[markerColor]="tenant()?.primary_color ?? '#24a9e0'"
mapStyle="minimal-light"
ariaLabel="Mapa de puntos de atención en Rosario"
/>
</div>

View File

@@ -93,6 +93,14 @@ export const routes: Routes = [
(m) => m.FaqPage,
),
},
{
path: 'contacto',
canActivate: [hasMenuGuard('help.contact')],
loadComponent: () =>
import('./pages/help-page/pages/contact-page/contact-page').then(
(m) => m.ContactPage,
),
},
{
path: '',
redirectTo: 'preguntas-frecuentes',