diff --git a/apps/api/src/assets/sitemap.xml b/apps/api/src/assets/sitemap.xml
index 2b34b50ec..6b6184b7a 100644
--- a/apps/api/src/assets/sitemap.xml
+++ b/apps/api/src/assets/sitemap.xml
@@ -102,6 +102,10 @@
https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-gospatz
${currentDate}T00:00:00+00:00
+
+ https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-intuit-mint
+ ${currentDate}T00:00:00+00:00
+
https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-justetf
${currentDate}T00:00:00+00:00
@@ -368,6 +372,10 @@
https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-gospatz
${currentDate}T00:00:00+00:00
+
+ https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-intuit-mint
+ ${currentDate}T00:00:00+00:00
+
https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-justetf
${currentDate}T00:00:00+00:00
@@ -662,6 +670,10 @@
https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-gospatz
${currentDate}T00:00:00+00:00
+
+ https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-intuit-mint
+ ${currentDate}T00:00:00+00:00
+
https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-justetf
${currentDate}T00:00:00+00:00
@@ -802,6 +814,10 @@
https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-gospatz
${currentDate}T00:00:00+00:00
+
+ https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-intuit-mint
+ ${currentDate}T00:00:00+00:00
+
https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-justetf
${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 5799437b4..8eddbea16 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
@@ -12,6 +12,7 @@ import { FinaryPageComponent } from './products/finary-page.component';
import { FolisharePageComponent } from './products/folishare-page.component';
import { GetquinPageComponent } from './products/getquin-page.component';
import { GoSpatzPageComponent } from './products/gospatz-page.component';
+import { IntuitMintPageComponent } from './products/intuit-mint-page.component';
import { JustEtfPageComponent } from './products/justetf-page.component';
import { KuberaPageComponent } from './products/kubera-page.component';
import { MarketsShPageComponent } from './products/markets.sh-page.component';
@@ -93,7 +94,7 @@ export const products: Product[] = [
key: 'capmon',
name: 'CapMon.org',
origin: $localize`Germany`,
- note: 'Sunset in 2023',
+ note: 'CapMon.org has discontinued in 2023',
slogan: 'Next Generation Assets Tracking'
},
{
@@ -182,6 +183,17 @@ export const products: Product[] = [
origin: $localize`Germany`,
slogan: 'Volle Kontrolle über deine Investitionen'
},
+ {
+ component: IntuitMintPageComponent,
+ hasFreePlan: true,
+ hasSelfHostingAbility: false,
+ key: 'intuit-mint',
+ name: 'Intuit Mint',
+ note: 'Intuit Mint has discontinued in 2023',
+ origin: $localize`United States`,
+ pricingPerYear: '$60',
+ slogan: 'Managing money, made simple'
+ },
{
component: JustEtfPageComponent,
founded: 2011,
@@ -224,7 +236,7 @@ export const products: Product[] = [
key: 'maybe-finance',
languages: ['English'],
name: 'Maybe Finance',
- note: 'Sunset in 2023',
+ note: 'Maybe Finance has discontinued in 2023',
origin: $localize`United States`,
pricingPerYear: '$145',
region: $localize`United States`,
@@ -352,7 +364,7 @@ export const products: Product[] = [
key: 'stockmarketeye',
name: 'StockMarketEye',
origin: $localize`France`,
- note: 'Sunset in 2023',
+ note: 'StockMarketEye has discontinued in 2023',
slogan: 'A Powerful Portfolio & Investment Tracking App'
},
{
diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts
new file mode 100644
index 000000000..f2b594ab9
--- /dev/null
+++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-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-intuit-mint-page',
+ standalone: true,
+ styleUrls: ['../product-page-template.scss'],
+ templateUrl: '../product-page-template.html'
+})
+export class IntuitMintPageComponent {
+ public product1 = products.find(({ key }) => {
+ return key === 'ghostfolio';
+ });
+
+ public product2 = products.find(({ key }) => {
+ return key === 'intuit-mint';
+ });
+
+ public routerLinkAbout = ['/' + $localize`about`];
+ public routerLinkFeatures = ['/' + $localize`features`];
+ public routerLinkResourcesPersonalFinanceTools = [
+ '/' + $localize`resources`,
+ 'personal-finance-tools'
+ ];
+}