diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products.ts index 715fef21d..e014cad23 100644 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products.ts +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products.ts @@ -1,17 +1,21 @@ import { Product } from '@ghostfolio/common/interfaces'; import { AltooPageComponent } from './products/altoo-page.component'; +import { CopilotMoneyPageComponent } from './products/copilot-money-page.component'; import { DivvyDiaryPageComponent } from './products/divvydiary-page.component'; import { ExirioPageComponent } from './products/exirio-page.component'; import { FolisharePageComponent } from './products/folishare-page.component'; import { GetquinPageComponent } from './products/getquin-page.component'; +import { GoSpatzPageComponent } from './products/gospatz-page.component'; import { JustEtfPageComponent } from './products/justetf-page.component'; import { KuberaPageComponent } from './products/kubera-page.component'; import { MaybeFinancePageComponent } from './products/maybe-finance-page.component'; import { MonsePageComponent } from './products/monse-page.component'; import { ParqetPageComponent } from './products/parqet-page.component'; +import { PlannixPageComponent } from './products/plannix-page.component'; import { PortfolioDividendTrackerPageComponent } from './products/portfolio-dividend-tracker-page.component'; import { PortseidoPageComponent } from './products/portseido-page.component'; +import { ProjectionLabPageComponent } from './products/projectionlab-page.component'; import { SeekingAlphaPageComponent } from './products/seeking-alpha-page.component'; import { SharesightPageComponent } from './products/sharesight-page.component'; import { SimplePortfolioPageComponent } from './products/simple-portfolio-page.component'; @@ -19,7 +23,7 @@ import { SnowballAnalyticsPageComponent } from './products/snowball-analytics-pa import { SumioPageComponent } from './products/sumio-page.component'; import { UtlunaPageComponent } from './products/utluna-page.component'; import { YeekateePageComponent } from './products/yeekatee-page.component'; -import { ProjectionLabPageComponent } from './products/projectionlab-page.component'; +import { DeltaPageComponent } from './products/delta-page.component'; export const products: Product[] = [ { @@ -46,6 +50,30 @@ export const products: Product[] = [ origin: 'Switzerland', slogan: 'Simplicity for Complex Wealth' }, + { + component: CopilotMoneyPageComponent, + founded: 2019, + hasFreePlan: false, + hasSelfHostingAbility: false, + isOpenSource: false, + key: 'copilot-money', + name: 'Copilot Money', + origin: 'United States', + pricingPerYear: '$70', + slogan: 'Do money better with Copilot' + }, + { + component: DeltaPageComponent, + founded: 2017, + hasFreePlan: true, + hasSelfHostingAbility: false, + isOpenSource: false, + key: 'delta', + name: 'Delta Investment Tracker', + note: 'Acquired by eToro', + origin: 'Belgium', + slogan: 'The app to track all your investments. Make smart moves only.' + }, { component: DivvyDiaryPageComponent, founded: 2019, @@ -96,6 +124,16 @@ export const products: Product[] = [ pricingPerYear: '€48', slogan: 'Portfolio Tracker, Analysis & Community' }, + { + component: GoSpatzPageComponent, + hasFreePlan: true, + hasSelfHostingAbility: false, + isOpenSource: false, + key: 'gospatz', + name: 'goSPATZ', + origin: 'Germany', + slogan: 'Volle Kontrolle über deine Investitionen' + }, { component: JustEtfPageComponent, founded: 2011, @@ -158,6 +196,16 @@ export const products: Product[] = [ region: 'Austria, Germany, Switzerland', slogan: 'Dein Vermögen immer im Blick' }, + { + component: PlannixPageComponent, + founded: 2023, + hasSelfHostingAbility: false, + isOpenSource: false, + key: 'plannix', + name: 'Plannix', + origin: 'Italy', + slogan: 'Your Personal Finance Hub' + }, { component: PortfolioDividendTrackerPageComponent, hasFreePlan: false, diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts new file mode 100644 index 000000000..ed941ab61 --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts @@ -0,0 +1,24 @@ +import { CommonModule } from '@angular/common'; +import { Component } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; + +import { products } from '../products'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-copilot-money-page', + standalone: true, + styleUrls: ['../product-page-template.scss'], + templateUrl: '../product-page-template.html' +}) +export class CopilotMoneyPageComponent { + public product1 = products.find(({ key }) => { + return key === 'ghostfolio'; + }); + + public product2 = products.find(({ key }) => { + return key === 'copilot-money'; + }); +} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts new file mode 100644 index 000000000..cf8f402d9 --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts @@ -0,0 +1,24 @@ +import { CommonModule } from '@angular/common'; +import { Component } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; + +import { products } from '../products'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-delta-page', + standalone: true, + styleUrls: ['../product-page-template.scss'], + templateUrl: '../product-page-template.html' +}) +export class DeltaPageComponent { + public product1 = products.find(({ key }) => { + return key === 'ghostfolio'; + }); + + public product2 = products.find(({ key }) => { + return key === 'delta'; + }); +} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts new file mode 100644 index 000000000..f14ab1575 --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts @@ -0,0 +1,24 @@ +import { CommonModule } from '@angular/common'; +import { Component } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; + +import { products } from '../products'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-gospatz-page', + standalone: true, + styleUrls: ['../product-page-template.scss'], + templateUrl: '../product-page-template.html' +}) +export class GoSpatzPageComponent { + public product1 = products.find(({ key }) => { + return key === 'ghostfolio'; + }); + + public product2 = products.find(({ key }) => { + return key === 'gospatz'; + }); +} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts new file mode 100644 index 000000000..249d5956e --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts @@ -0,0 +1,24 @@ +import { CommonModule } from '@angular/common'; +import { Component } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; + +import { products } from '../products'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-plannix-page', + standalone: true, + styleUrls: ['../product-page-template.scss'], + templateUrl: '../product-page-template.html' +}) +export class PlannixPageComponent { + public product1 = products.find(({ key }) => { + return key === 'ghostfolio'; + }); + + public product2 = products.find(({ key }) => { + return key === 'plannix'; + }); +} diff --git a/apps/client/src/assets/sitemap.xml b/apps/client/src/assets/sitemap.xml index 880509ec8..6e976a755 100644 --- a/apps/client/src/assets/sitemap.xml +++ b/apps/client/src/assets/sitemap.xml @@ -6,494 +6,510 @@ http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> https://ghostfol.io/de - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/blog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/blog/2021/07/hallo-ghostfolio - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/features - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/haeufig-gestellte-fragen - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/maerkte daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/open daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/preise - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/registrierung - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/ressourcen - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/ueber-uns - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/ueber-uns/changelog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/ueber-uns/datenschutzbestimmungen - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/de/ueber-uns/lizenz - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/about - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/about/changelog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/about/license - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2021/07/hello-ghostfolio - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2022/01/ghostfolio-first-months-in-open-source - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2022/07/ghostfolio-meets-internet-identity - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2022/07/how-do-i-get-my-finances-in-order - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2022/08/500-stars-on-github - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2022/10/hacktoberfest-2022 - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2022/11/black-friday-2022 - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2022/12/the-importance-of-tracking-your-personal-finances - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2023/02/ghostfolio-meets-umbrel - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2023/03/ghostfolio-reaches-1000-stars-on-github - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2023/05/unlock-your-financial-potential-with-ghostfolio - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/blog/2023/07/exploring-the-path-to-fire - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/faq - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/features - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/markets daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/open daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/pricing - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/register - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-altoo - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 + + + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-copilot-money + 2023-07-10T00:00:00+00:00 + + + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-delta + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-divvydiary - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-exirio - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-folishare - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-getquin - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 + + + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-gospatz + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-justetf - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-kubera - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-maybe-finance - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-monse - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-parqet - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 + + + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-plannix + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-portfolio-dividend-tracker - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-portseido - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-projectionlab - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-seeking-alpha - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-sharesight - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-simple-portfolio - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-snowball-analytics - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-sumio - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-utluna - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-yeekatee - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/funcionalidades - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/mercados daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/open daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/precios - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/preguntas-mas-frecuentes - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/recursos - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/registro - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/sobre - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/sobre/changelog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/sobre/licencia - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/es/sobre/politica-de-privacidad - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/a-propos - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/a-propos/changelog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/a-propos/licence - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/a-propos/politique-de-confidentialite - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/enregistrement - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/fonctionnalites - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/foire-aux-questions - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/marches daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/open daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/prix - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/fr/ressources - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/domande-piu-frequenti - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/funzionalita - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/informazioni-su - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/informazioni-su/changelog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/informazioni-su/licenza - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/informazioni-su/informativa-sulla-privacy - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/iscrizione - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/mercati daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/open daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/prezzi - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/it/risorse - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/bronnen - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/kenmerken - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/markten daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/open daily - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/over - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/over/changelog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/over/licentie - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/over/privacybeleid - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/prijzen - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/registratie - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/nl/vaak-gestelde-vragen - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/blog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/funcionalidades - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/mercados - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/open - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/perguntas-mais-frequentes - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/precos - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/recursos - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/registo - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/sobre - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/sobre/changelog - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/sobre/licenca - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00 https://ghostfol.io/pt/sobre/politica-de-privacidade - 2023-07-07T00:00:00+00:00 + 2023-07-10T00:00:00+00:00