Browse Source

Add folishare

pull/2135/head
Thomas 2 years ago
parent
commit
f67f12b801
  1. 15
      apps/client/src/app/pages/resources/personal-finance-tools/products.ts
  2. 24
      apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts
  3. 4
      apps/client/src/assets/sitemap.xml

15
apps/client/src/app/pages/resources/personal-finance-tools/products.ts

@ -9,6 +9,7 @@ import { SimplePortfolioPageComponent } from './products/simple-portfolio-page.c
import { SnowballAnalyticsPageComponent } from './products/snowball-analytics-page.component';
import { UtlunaPageComponent } from './products/utluna-page.component';
import { YeekateePageComponent } from './products/yeekatee-page.component';
import { FolisharePageComponent } from './products/folishare-page.component';
export const products: Product[] = [
{
@ -36,14 +37,26 @@ export const products: Product[] = [
origin: 'Switzerland',
slogan: 'Simplicity for Complex Wealth'
},
{
component: FolisharePageComponent,
hasFreePlan: true,
hasSelfHostingAbility: false,
isOpenSource: false,
key: 'folishare',
languages: 'English, German',
name: 'folishare',
origin: 'Austria',
pricingPerYear: '$65',
slogan: 'Take control over your investments'
},
{
component: GetquinPageComponent,
founded: 2020,
hasFreePlan: true,
hasSelfHostingAbility: false,
isOpenSource: false,
languages: 'English, German',
key: 'getquin',
languages: 'English, German',
name: 'getquin',
origin: 'Germany',
pricingPerYear: '€48',

24
apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-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-folishare-page',
standalone: true,
styleUrls: ['../product-page-template.scss'],
templateUrl: '../product-page-template.html'
})
export class FolisharePageComponent {
public product1 = products.find(({ key }) => {
return key === 'ghostfolio';
});
public product2 = products.find(({ key }) => {
return key === 'folishare';
});
}

4
apps/client/src/assets/sitemap.xml

@ -168,6 +168,10 @@
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-altoo</loc>
<lastmod>2023-07-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-folishare</loc>
<lastmod>2023-07-01T00:00:00+00:00</lastmod>
</url>
<url>
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-getquin</loc>
<lastmod>2023-07-01T00:00:00+00:00</lastmod>

Loading…
Cancel
Save