diff --git a/apps/client/src/app/pages/landing/landing-page.component.ts b/apps/client/src/app/pages/landing/landing-page.component.ts index 4b5d79284..4a05c70c9 100644 --- a/apps/client/src/app/pages/landing/landing-page.component.ts +++ b/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(); diff --git a/apps/client/src/app/pages/landing/landing-page.html b/apps/client/src/app/pages/landing/landing-page.html index 1174f5354..816da73ca 100644 --- a/apps/client/src/app/pages/landing/landing-page.html +++ b/apps/client/src/app/pages/landing/landing-page.html @@ -108,11 +108,12 @@
-
+

What our users are saying

- +
+
-
- Super slim app with a great user interface.
On top of that, - it's open source. +
{{ testimonial.quote }}
+
+ — {{ testimonial.author }}, {{ testimonial.country }}
-
— Philipp, Germany 🇩🇪