diff --git a/CHANGELOG.md b/CHANGELOG.md index 255d90127..606cc970a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Added + +- Added a step by step introduction for new users + ## 1.294.0 - 2023-07-29 ### Changed diff --git a/apps/api/src/app/user/user.service.ts b/apps/api/src/app/user/user.service.ts index 19ead8bd7..3c1e42abf 100644 --- a/apps/api/src/app/user/user.service.ts +++ b/apps/api/src/app/user/user.service.ts @@ -14,6 +14,7 @@ import { import { UserWithSettings } from '@ghostfolio/common/types'; import { Injectable } from '@nestjs/common'; import { Prisma, Role, User } from '@prisma/client'; +import { differenceInDays } from 'date-fns'; import { sortBy } from 'lodash'; const crypto = require('crypto'); @@ -165,11 +166,26 @@ export class UserService { user.subscription = this.subscriptionService.getSubscription(Subscription); - if ( - Analytics?.activityCount % 5 === 0 && - user.subscription?.type === 'Basic' - ) { - currentPermissions.push(permissions.enableSubscriptionInterstitial); + if (user.subscription?.type === 'Basic') { + const daysSinceRegistration = differenceInDays( + new Date(), + user.createdAt + ); + let frequency = 20; + + if (daysSinceRegistration > 180) { + frequency = 3; + } else if (daysSinceRegistration > 60) { + frequency = 5; + } else if (daysSinceRegistration > 30) { + frequency = 10; + } else if (daysSinceRegistration > 15) { + frequency = 15; + } + + if (Analytics?.activityCount % frequency === 1) { + currentPermissions.push(permissions.enableSubscriptionInterstitial); + } } if (user.subscription?.type === 'Premium') { diff --git a/apps/client/src/app/components/home-overview/home-overview.html b/apps/client/src/app/components/home-overview/home-overview.html index 6c0644021..c11734155 100644 --- a/apps/client/src/app/components/home-overview/home-overview.html +++ b/apps/client/src/app/components/home-overview/home-overview.html @@ -1,57 +1,110 @@
-
-
- -
-
- -
- +
+
+
+ +
+
+
+
+
+ + [locale]="user?.settings?.locale" + [performance]="performance" + [showDetails]="showDetails" + > +
+ +
-
+
diff --git a/apps/client/src/app/components/home-overview/home-overview.module.ts b/apps/client/src/app/components/home-overview/home-overview.module.ts index 68dbe6c59..e838775f2 100644 --- a/apps/client/src/app/components/home-overview/home-overview.module.ts +++ b/apps/client/src/app/components/home-overview/home-overview.module.ts @@ -1,5 +1,6 @@ import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; import { RouterModule } from '@angular/router'; import { GfPortfolioPerformanceModule } from '@ghostfolio/client/components/portfolio-performance/portfolio-performance.module'; import { GfToggleModule } from '@ghostfolio/client/components/toggle/toggle.module'; @@ -16,6 +17,7 @@ import { HomeOverviewComponent } from './home-overview.component'; GfNoTransactionsInfoModule, GfPortfolioPerformanceModule, GfToggleModule, + MatButtonModule, RouterModule ], schemas: [CUSTOM_ELEMENTS_SCHEMA] diff --git a/apps/client/src/app/components/home-overview/home-overview.scss b/apps/client/src/app/components/home-overview/home-overview.scss index 92f086c5f..9f8a1ce49 100644 --- a/apps/client/src/app/components/home-overview/home-overview.scss +++ b/apps/client/src/app/components/home-overview/home-overview.scss @@ -31,4 +31,8 @@ top: 0; } } + + .introduction { + max-width: 50rem; + } } diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index a44079f7f..bfed56260 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -978,7 +978,7 @@ apps/client/src/app/pages/public/public-page.html - 140 + 149 @@ -1954,7 +1954,7 @@ Nach Konto apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 278 + 287 @@ -2002,7 +2002,7 @@ Nach Land apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 255 + 264 @@ -2140,6 +2140,10 @@ Add activity Aktivität hinzufügen + + apps/client/src/app/components/home-overview/home-overview.html + 58 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 8 @@ -2318,7 +2322,7 @@ Ghostfolio verschafft Ihnen den Überblick über Ihr Vermögen. apps/client/src/app/pages/public/public-page.html - 135,137 + 144,146 @@ -2798,7 +2802,7 @@ Filtern nach Konto, Währung, Symbol oder Typ... libs/ui/src/lib/activities-table/activities-table.component.ts - 418 + 419 @@ -3870,7 +3874,7 @@ Nach ETF-Anbieter apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 298 + 307 @@ -7085,6 +7089,90 @@ 16 + + Welcome to Ghostfolio + Herzlich willkommen bei Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Konten einrichten + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Verschaffe dir einen umfassenden Überblick, indem du deine Bank- und Wertpapierkonten hinzufügst. + + apps/client/src/app/components/home-overview/home-overview.html + 19,20 + + + + Capture your activities + Aktivitäten erfassen + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Erfasse deine Investitionsaktivitäten, um dein Portfolio auf dem neuesten Stand zu halten. + + apps/client/src/app/components/home-overview/home-overview.html + 28,29 + + + + Monitor and analyze your portfolio + Portfolio überwachen und analysieren + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Verfolge die Entwicklung in Echtzeit mit umfassenden Analysen und Einblicken. + + apps/client/src/app/components/home-overview/home-overview.html + 37,38 + + + + No data available + Keine Daten verfügbar + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 251 + + + apps/client/src/app/pages/public/public-page.html + 120 + + + + Ready to take control of your personal finances? + Bist du bereit, die Kontrolle über deine Finanzen zu übernehmen? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + + + Setup accounts + Konten einrichten + + apps/client/src/app/components/home-overview/home-overview.html + 50 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 998b89260..ece061931 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -979,7 +979,7 @@ apps/client/src/app/pages/public/public-page.html - 140 + 149 @@ -1955,7 +1955,7 @@ Por cuenta apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 278 + 287 @@ -2003,7 +2003,7 @@ Por país apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 255 + 264 @@ -2141,6 +2141,10 @@ Add activity Añadir operación + + apps/client/src/app/components/home-overview/home-overview.html + 58 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 8 @@ -2319,7 +2323,7 @@ Ghostfolio te permite hacer un seguimiento de tu riqueza. apps/client/src/app/pages/public/public-page.html - 135,137 + 144,146 @@ -2799,7 +2803,7 @@ Filtrar por cuenta, divisa, símbolo o tipo... libs/ui/src/lib/activities-table/activities-table.component.ts - 418 + 419 @@ -3871,7 +3875,7 @@ By ETF Provider apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 298 + 307 @@ -7086,6 +7090,90 @@ 16 + + Welcome to Ghostfolio + Welcome to Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Setup your accounts + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. + + apps/client/src/app/components/home-overview/home-overview.html + 19,20 + + + + Capture your activities + Capture your activities + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. + + apps/client/src/app/components/home-overview/home-overview.html + 28,29 + + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. + + apps/client/src/app/components/home-overview/home-overview.html + 37,38 + + + + No data available + No data available + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 251 + + + apps/client/src/app/pages/public/public-page.html + 120 + + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + + + Setup accounts + Setup accounts + + apps/client/src/app/components/home-overview/home-overview.html + 50 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 7f745a6b3..9e6fa9956 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -2388,6 +2388,10 @@ Add activity Ajouter Activité + + apps/client/src/app/components/home-overview/home-overview.html + 58 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 8 @@ -2558,7 +2562,7 @@ Par Compte apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 278 + 287 @@ -2606,7 +2610,7 @@ Par Pays apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 255 + 264 @@ -2834,7 +2838,7 @@ Ghostfolio vous aide à garder un aperçu de votre patrimoine. apps/client/src/app/pages/public/public-page.html - 135,137 + 144,146 @@ -2846,7 +2850,7 @@ apps/client/src/app/pages/public/public-page.html - 140 + 149 @@ -3030,7 +3034,7 @@ Filtrer par compte, devise, symbole, ou type... libs/ui/src/lib/activities-table/activities-table.component.ts - 418 + 419 @@ -3870,7 +3874,7 @@ Par Émetteur d'ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 298 + 307 @@ -7085,6 +7089,90 @@ 16 + + Welcome to Ghostfolio + Welcome to Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Setup your accounts + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. + + apps/client/src/app/components/home-overview/home-overview.html + 19,20 + + + + Capture your activities + Capture your activities + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. + + apps/client/src/app/components/home-overview/home-overview.html + 28,29 + + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. + + apps/client/src/app/components/home-overview/home-overview.html + 37,38 + + + + No data available + No data available + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 251 + + + apps/client/src/app/pages/public/public-page.html + 120 + + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + + + Setup accounts + Setup accounts + + apps/client/src/app/components/home-overview/home-overview.html + 50 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 4c5f6b1a9..ab025a78d 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -979,7 +979,7 @@ apps/client/src/app/pages/public/public-page.html - 140 + 149 @@ -1955,7 +1955,7 @@ Per account apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 278 + 287 @@ -2003,7 +2003,7 @@ Per paese apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 255 + 264 @@ -2141,6 +2141,10 @@ Add activity Aggiungi un'attività + + apps/client/src/app/components/home-overview/home-overview.html + 58 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 8 @@ -2319,7 +2323,7 @@ Ghostfolio ti permette di tenere traccia della tua ricchezza. apps/client/src/app/pages/public/public-page.html - 135,137 + 144,146 @@ -2799,7 +2803,7 @@ Filtra per account, valuta, simbolo o tipo... libs/ui/src/lib/activities-table/activities-table.component.ts - 418 + 419 @@ -3871,7 +3875,7 @@ By ETF Provider apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 298 + 307 @@ -7086,6 +7090,90 @@ 16 + + Welcome to Ghostfolio + Welcome to Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Setup your accounts + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. + + apps/client/src/app/components/home-overview/home-overview.html + 19,20 + + + + Capture your activities + Capture your activities + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. + + apps/client/src/app/components/home-overview/home-overview.html + 28,29 + + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. + + apps/client/src/app/components/home-overview/home-overview.html + 37,38 + + + + No data available + No data available + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 251 + + + apps/client/src/app/pages/public/public-page.html + 120 + + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + + + Setup accounts + Setup accounts + + apps/client/src/app/components/home-overview/home-overview.html + 50 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 50d64b9d0..890ccd76b 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -978,7 +978,7 @@ apps/client/src/app/pages/public/public-page.html - 140 + 149 @@ -1954,7 +1954,7 @@ Per rekening apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 278 + 287 @@ -2002,7 +2002,7 @@ Per land apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 255 + 264 @@ -2140,6 +2140,10 @@ Add activity Activiteit toevoegen + + apps/client/src/app/components/home-overview/home-overview.html + 58 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 8 @@ -2318,7 +2322,7 @@ Ghostfolio stelt u in staat om uw vermogen bij te houden. apps/client/src/app/pages/public/public-page.html - 135,137 + 144,146 @@ -2798,7 +2802,7 @@ Filter op rekening, valuta, symbool of type... libs/ui/src/lib/activities-table/activities-table.component.ts - 418 + 419 @@ -3870,7 +3874,7 @@ By ETF Provider apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 298 + 307 @@ -7085,6 +7089,90 @@ 16 + + Welcome to Ghostfolio + Welcome to Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Setup your accounts + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. + + apps/client/src/app/components/home-overview/home-overview.html + 19,20 + + + + Capture your activities + Capture your activities + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. + + apps/client/src/app/components/home-overview/home-overview.html + 28,29 + + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. + + apps/client/src/app/components/home-overview/home-overview.html + 37,38 + + + + No data available + No data available + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 251 + + + apps/client/src/app/pages/public/public-page.html + 120 + + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + + + Setup accounts + Setup accounts + + apps/client/src/app/components/home-overview/home-overview.html + 50 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 66cfd40fb..c1e52204e 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -2300,6 +2300,10 @@ Add activity Adicionar atividade + + apps/client/src/app/components/home-overview/home-overview.html + 58 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 8 @@ -2478,7 +2482,7 @@ Por Conta apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 278 + 287 @@ -2526,7 +2530,7 @@ Por País apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 255 + 264 @@ -2742,7 +2746,7 @@ O Ghostfolio permite-lhe estar a par e gerir a sua riqueza. apps/client/src/app/pages/public/public-page.html - 135,137 + 144,146 @@ -2754,7 +2758,7 @@ apps/client/src/app/pages/public/public-page.html - 140 + 149 @@ -2918,7 +2922,7 @@ Filtrar por conta, moeda, símbolo ou tipo... libs/ui/src/lib/activities-table/activities-table.component.ts - 418 + 419 @@ -3870,7 +3874,7 @@ Por Prestador de ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 298 + 307 @@ -7085,6 +7089,90 @@ 16 + + Welcome to Ghostfolio + Welcome to Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Setup your accounts + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. + + apps/client/src/app/components/home-overview/home-overview.html + 19,20 + + + + Capture your activities + Capture your activities + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. + + apps/client/src/app/components/home-overview/home-overview.html + 28,29 + + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. + + apps/client/src/app/components/home-overview/home-overview.html + 37,38 + + + + No data available + No data available + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 251 + + + apps/client/src/app/pages/public/public-page.html + 120 + + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + + + Setup accounts + Setup accounts + + apps/client/src/app/components/home-overview/home-overview.html + 50 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index c591ef78d..5c20aba99 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -907,7 +907,7 @@ apps/client/src/app/pages/public/public-page.html - 140 + 149 @@ -1792,7 +1792,7 @@ By Account apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 278 + 287 @@ -1834,7 +1834,7 @@ By Country apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 255 + 264 @@ -1958,6 +1958,10 @@ Add activity + + apps/client/src/app/components/home-overview/home-overview.html + 58 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 8 @@ -2121,7 +2125,7 @@ Ghostfolio empowers you to keep track of your wealth. apps/client/src/app/pages/public/public-page.html - 135,137 + 144,146 @@ -2550,7 +2554,7 @@ Filter by account, currency, symbol or type... libs/ui/src/lib/activities-table/activities-table.component.ts - 418 + 419 @@ -3487,7 +3491,7 @@ By ETF Provider apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 298 + 307 @@ -6644,6 +6648,80 @@ 16 + + No data available + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 251 + + + apps/client/src/app/pages/public/public-page.html + 120 + + + + Monitor and analyze your portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + + apps/client/src/app/components/home-overview/home-overview.html + 19,20 + + + + Capture your activities + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Welcome to Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Record your investment activities to keep your portfolio up to date. + + apps/client/src/app/components/home-overview/home-overview.html + 28,29 + + + + Track your progress in real-time with comprehensive analysis and insights. + + apps/client/src/app/components/home-overview/home-overview.html + 37,38 + + + + Ready to take control of your personal finances? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + + + Setup accounts + + apps/client/src/app/components/home-overview/home-overview.html + 50 + +