feat(checkout): implement checkout page with form validation and routing

This commit is contained in:
2026-07-03 10:54:43 -03:00
parent 2b3713f6a8
commit 45f0618ae9
6 changed files with 350 additions and 9 deletions

View File

@@ -44,6 +44,13 @@ export const routes: Routes = [
import('./pages/product-detail-page/product-detail-page.component').then(
(m) => m.ProductDetailPageComponent
)
},
{
path: 'checkout',
loadComponent: () =>
import('./pages/checkout-page/checkout-page.component').then(
(m) => m.CheckoutPageComponent
)
}
]
}