feat(login): implement auth layout and restructure login page with improved styling and structure

This commit is contained in:
2026-07-02 15:45:26 -03:00
parent ff3c3233c1
commit 3c98600193
6 changed files with 182 additions and 87 deletions

View File

@@ -1,5 +1,6 @@
import { Routes } from '@angular/router';
import { AuthLayoutComponent } from '../../core/layout/auth-layout/auth-layout.component';
import { StoreLayoutComponent } from '../../core/layout/store-layout/store-layout.component';
import { LoginPageComponent } from './pages/login-page/login-page.component';
import { StoreHomePageComponent } from './pages/store-home-page/store-home-page.component';
@@ -15,7 +16,13 @@ export const routes: Routes = [
},
{
path: 'login',
component: LoginPageComponent
component: AuthLayoutComponent,
children: [
{
path: '',
component: LoginPageComponent
}
]
},
{
path: 'producto/:id',