diff --git a/CHANGELOG.md b/CHANGELOG.md index acbda8895..10796bada 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Harmonized the style of various tables - Keep the color per type when switching between _Initial_ and _Current_ in pie charts - Upgraded `chart.js` from version `3.0.2` to `3.2.1` +- Moved the pricing section to a dedicated page - Improved the style of the transaction filtering component ### Fixed diff --git a/apps/client/src/app/app-routing.module.ts b/apps/client/src/app/app-routing.module.ts index 920565529..55f025134 100644 --- a/apps/client/src/app/app-routing.module.ts +++ b/apps/client/src/app/app-routing.module.ts @@ -28,11 +28,6 @@ const routes: Routes = [ loadChildren: () => import('./pages/admin/admin-page.module').then((m) => m.AdminPageModule) }, - { - path: 'auth', - loadChildren: () => - import('./pages/auth/auth-page.module').then((m) => m.AuthPageModule) - }, { path: 'analysis', loadChildren: () => @@ -40,11 +35,23 @@ const routes: Routes = [ (m) => m.AnalysisPageModule ) }, + { + path: 'auth', + loadChildren: () => + import('./pages/auth/auth-page.module').then((m) => m.AuthPageModule) + }, { path: 'home', loadChildren: () => import('./pages/home/home-page.module').then((m) => m.HomePageModule) }, + { + path: 'pricing', + loadChildren: () => + import('./pages/pricing/pricing-page.module').then( + (m) => m.PricingPageModule + ) + }, { path: 'report', loadChildren: () => diff --git a/apps/client/src/app/components/header/header.component.html b/apps/client/src/app/components/header/header.component.html index 883f82229..3290ff205 100644 --- a/apps/client/src/app/components/header/header.component.html +++ b/apps/client/src/app/components/header/header.component.html @@ -6,67 +6,76 @@ Overview Analysis X-ray Transactions Accounts Admin Control Resources + Pricing About