Browse Source
Feature/add testimonials (#1814)
* Add testimonials
* Update changelog
pull/1815/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
38 additions and
13 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/landing/landing-page.component.ts
-
apps/client/src/app/pages/landing/landing-page.html
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Extended the testimonial section on the landing page |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the loading state of the value component on the allocations page |
|
|
|
|
|
@ -25,24 +25,40 @@ export class LandingPageComponent implements OnDestroy, OnInit { |
|
|
|
public statistics: Statistics; |
|
|
|
public testimonials = [ |
|
|
|
{ |
|
|
|
author: 'Philipp', |
|
|
|
country: 'Germany 🇩🇪', |
|
|
|
quote: `Super slim app with a great user interface. On top of that, it's open source.` |
|
|
|
}, |
|
|
|
{ |
|
|
|
author: 'Onur', |
|
|
|
country: 'Switzerland 🇨🇭', |
|
|
|
quote: `Ghostfolio looks like the perfect portfolio tracker I've been searching for all these years.` |
|
|
|
author: 'Damjan', |
|
|
|
country: 'Slovenia 🇸🇮', |
|
|
|
quote: |
|
|
|
'Ghostfolio helps me track all my investments in one place, it has a built-in portfolio analyzer and a very neat, seamless user interface.' |
|
|
|
}, |
|
|
|
{ |
|
|
|
author: 'Ivo', |
|
|
|
country: 'Netherlands 🇳🇱', |
|
|
|
quote: `A fantastic open source app to track my investments across platforms. Love the simplicity of its design and the depth of the insights.` |
|
|
|
quote: |
|
|
|
'A fantastic open source app to track my investments across platforms. Love the simplicity of its design and the depth of the insights.' |
|
|
|
}, |
|
|
|
{ |
|
|
|
author: 'Damjan', |
|
|
|
country: 'Slovenia 🇸🇮', |
|
|
|
quote: `Ghostfolio helps me track all my investments in one place, it has a built-in portfolio analyzer and a very neat, seamless user interface.` |
|
|
|
author: 'Lars', |
|
|
|
country: 'Denmark 🇩🇰', |
|
|
|
quote: 'Great app!' |
|
|
|
}, |
|
|
|
{ |
|
|
|
author: 'Marius', |
|
|
|
country: 'Romania 🇷🇴', |
|
|
|
quote: |
|
|
|
'Ghostfolio is an awesome project. It helps me keep track of cryptocurrencies in an easy way. I really like it!', |
|
|
|
url: 'https://mariushosting.com' |
|
|
|
}, |
|
|
|
{ |
|
|
|
author: 'Onur', |
|
|
|
country: 'Switzerland 🇨🇭', |
|
|
|
quote: |
|
|
|
'Ghostfolio looks like the perfect portfolio tracker I’ve been searching for all these years.' |
|
|
|
}, |
|
|
|
{ |
|
|
|
author: 'Philipp', |
|
|
|
country: 'Germany 🇩🇪', |
|
|
|
quote: |
|
|
|
'Super slim app with a great user interface. On top of that, it’s open source.' |
|
|
|
} |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
@ -319,7 +319,12 @@ |
|
|
|
<div> |
|
|
|
<div>{{ testimonial.quote }}</div> |
|
|
|
<div class="mt-2 text-muted"> |
|
|
|
— {{ testimonial.author }}, {{ testimonial.country }} |
|
|
|
— |
|
|
|
<a *ngIf="testimonial.url" target="_blank" [href]="testimonial.url" |
|
|
|
>{{ testimonial.author }}</a |
|
|
|
> |
|
|
|
<span *ngIf="!testimonial.url">{{ testimonial.author }}</span>, {{ |
|
|
|
testimonial.country }} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|