feat(help-page): implement help page layout with FAQ section and sidebar navigation

This commit is contained in:
2026-07-23 17:13:33 -03:00
parent d50bd40602
commit afaa761acc
15 changed files with 389 additions and 10 deletions

View File

@@ -77,6 +77,29 @@ export const routes: Routes = [
},
],
},
{
path: 'ayuda',
canActivate: [hasMenuGuard('help')],
loadComponent: () =>
import('./pages/help-page/sidebar-layout/help-sidebar-layout').then(
(m) => m.HelpSidebarLayout,
),
children: [
{
path: 'preguntas-frecuentes',
canActivate: [hasMenuGuard('help.faq')],
loadComponent: () =>
import('./pages/help-page/pages/faq-page/faq-page').then(
(m) => m.FaqPage,
),
},
{
path: '',
redirectTo: 'preguntas-frecuentes',
pathMatch: 'full',
},
],
},
{
path: 'mi-cuenta',
canActivate: [authGuard],