feat: implement store layout and home page components with routing

This commit is contained in:
2026-06-26 13:42:23 -03:00
parent 236a3772a4
commit 23e8da345a
12 changed files with 715 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { Routes } from '@angular/router';
import { StoreLayoutComponent } from '../../core/layout/store-layout/store-layout.component';
import { StoreHomePageComponent } from './pages/store-home-page/store-home-page.component';
export const routes: Routes = [
{
path: '',
component: StoreLayoutComponent,
children: [
{
path: '',
component: StoreHomePageComponent
}
]
}
];