feat: add routing for componentes-test and create reusable button component

- Implemented lazy loading for the componentes-test feature module.
- Created a redirect route to componentes-test as the default path.
- Added a new ReutilizablesTestPageComponent to showcase reusable components.
- Developed a reusable ButtonComponent with various styles and states.
- Updated global styles to include Bootstrap.
- Added SCSS styles for the new components and pages.
This commit is contained in:
2026-06-24 09:31:37 -03:00
parent 1bff88e92a
commit d108cf1ee2
13 changed files with 147 additions and 350 deletions

View File

@@ -1,3 +1,14 @@
import { Routes } from '@angular/router';
export const routes: Routes = [];
export const routes: Routes = [
{
path: 'componentes-test',
loadChildren: () =>
import('./features/componentes-test/componentes-test.routes').then((m) => m.routes)
},
{
path: '',
pathMatch: 'full',
redirectTo: 'componentes-test'
}
];