Browse Source

Add more testimonials

pull/479/head
Thomas 4 years ago
parent
commit
116808912c
  1. 22
      apps/client/src/app/pages/landing/landing-page.component.ts
  2. 12
      apps/client/src/app/pages/landing/landing-page.html

22
apps/client/src/app/pages/landing/landing-page.component.ts

@ -14,6 +14,28 @@ import { Subject } from 'rxjs';
export class LandingPageComponent implements OnDestroy, OnInit {
public currentYear = format(new Date(), 'yyyy');
public demoAuthToken: string;
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 that I've been searching for all these years.`
},
{
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.`
},
{
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.`
}
];
private unsubscribeSubject = new Subject<void>();

12
apps/client/src/app/pages/landing/landing-page.html

@ -108,11 +108,12 @@
</div>
<div class="row my-5">
<div class="col-md-6 offset-md-3">
<div class="col-12">
<h2 class="h4 mb-1 text-center">
What our <strong>users</strong> are saying
</h2>
</div>
<div *ngFor="let testimonial of testimonials" class="col-md-6">
<div class="d-flex flex-row py-3">
<div class="d-flex justify-content-center">
<gf-logo
@ -122,11 +123,10 @@
></gf-logo>
</div>
<div>
<div>
Super slim app with a great user interface.<br />On top of that,
it's open source.
<div>{{ testimonial.quote }}</div>
<div class="mt-2 text-muted">
— {{ testimonial.author }}, {{ testimonial.country }}
</div>
<div class="mt-2 text-muted">— Philipp, Germany 🇩🇪</div>
</div>
</div>
</div>

Loading…
Cancel
Save