From bb03f4bbea9b90fe13c4f4a1e069dd2961c68d71 Mon Sep 17 00:00:00 2001
From: Thomas <4159106+dtslvr@users.noreply.github.com>
Date: Tue, 7 Nov 2023 17:24:05 +0100
Subject: [PATCH] Add Monarch Money
---
apps/api/src/assets/sitemap.xml | 16 ++++++++++
.../personal-finance-tools/products.ts | 11 +++++++
.../products/monarch-money-page.component.ts | 31 +++++++++++++++++++
3 files changed, 58 insertions(+)
create mode 100644 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts
diff --git a/apps/api/src/assets/sitemap.xml b/apps/api/src/assets/sitemap.xml
index 5f7049311..36b591d1b 100644
--- a/apps/api/src/assets/sitemap.xml
+++ b/apps/api/src/assets/sitemap.xml
@@ -130,6 +130,10 @@
https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-maybe-finance
${currentDate}T00:00:00+00:00
+
+ https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-monarch-money
+ ${currentDate}T00:00:00+00:00
+
https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-monse
${currentDate}T00:00:00+00:00
@@ -420,6 +424,10 @@
https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-maybe-finance
${currentDate}T00:00:00+00:00
+
+ https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-monarch-money
+ ${currentDate}T00:00:00+00:00
+
https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-monse
${currentDate}T00:00:00+00:00
@@ -734,6 +742,10 @@
https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-maybe-finance
${currentDate}T00:00:00+00:00
+
+ https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-monarch-money
+ ${currentDate}T00:00:00+00:00
+
https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-monse
${currentDate}T00:00:00+00:00
@@ -894,6 +906,10 @@
https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-maybe-finance
${currentDate}T00:00:00+00:00
+
+ https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-monarch-money
+ ${currentDate}T00:00:00+00:00
+
https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-monse
${currentDate}T00:00:00+00:00
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 09569d8c1..af8cf8647 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
@@ -19,6 +19,7 @@ import { JustEtfPageComponent } from './products/justetf-page.component';
import { KuberaPageComponent } from './products/kubera-page.component';
import { MarketsShPageComponent } from './products/markets.sh-page.component';
import { MaybeFinancePageComponent } from './products/maybe-finance-page.component';
+import { MonarchMoneyPageComponent } from './products/monarch-money-page.component';
import { MonsePageComponent } from './products/monse-page.component';
import { ParqetPageComponent } from './products/parqet-page.component';
import { PlannixPageComponent } from './products/plannix-page.component';
@@ -265,6 +266,16 @@ export const products: Product[] = [
region: $localize`United States`,
slogan: 'Your financial future, in your control'
},
+ {
+ component: MonarchMoneyPageComponent,
+ founded: 2019,
+ hasSelfHostingAbility: false,
+ key: 'monarch-money',
+ name: 'Monarch Money',
+ origin: $localize`United States`,
+ pricingPerYear: '$99.99',
+ slogan: 'The modern way to manage your money'
+ },
{
component: MonsePageComponent,
hasFreePlan: false,
diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts
new file mode 100644
index 000000000..4b21de801
--- /dev/null
+++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts
@@ -0,0 +1,31 @@
+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-monarch-money-page',
+ standalone: true,
+ styleUrls: ['../product-page-template.scss'],
+ templateUrl: '../product-page-template.html'
+})
+export class MonarchMoneyPageComponent {
+ public product1 = products.find(({ key }) => {
+ return key === 'ghostfolio';
+ });
+
+ public product2 = products.find(({ key }) => {
+ return key === 'monarch-money';
+ });
+
+ public routerLinkAbout = ['/' + $localize`about`];
+ public routerLinkFeatures = ['/' + $localize`features`];
+ public routerLinkResourcesPersonalFinanceTools = [
+ '/' + $localize`resources`,
+ 'personal-finance-tools'
+ ];
+}