feat(releases-page): Added releases page with information located inside current changelog

This commit is contained in:
Erik Tiekstra
2021-05-18 11:26:39 +02:00
parent 482357b118
commit 9dd04ca565
13 changed files with 280 additions and 6 deletions

View File

@@ -37,6 +37,11 @@ const routes: Routes = [
data: { title: 'Inställningar' },
loadChildren: () => import('./pages/settings/settings.module').then(m => m.SettingsModule),
},
{
path: 'releases',
data: { title: 'Releases' },
loadChildren: () => import('./pages/releases/releases.module').then(m => m.ReleasesModule),
},
{
path: '**',
data: { title: 'Sidan hittas inte' },