From 8f2caa508ae38c1a603c85ada224588a9dad102c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 22 Sep 2022 20:52:46 +0200 Subject: [PATCH] Feature/extend landing page (#1279) * Extend landing page * Update changelog --- CHANGELOG.md | 1 + .../src/app/pages/landing/landing-page.html | 64 ++++++++++++++++--- .../app/pages/landing/landing-page.module.ts | 2 + 3 files changed, 58 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bc2e7a9..53643c9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Set up the language localization for Italiano (`it`) +- Extended the landing page ## 1.195.0 - 20.09.2022 diff --git a/apps/client/src/app/pages/landing/landing-page.html b/apps/client/src/app/pages/landing/landing-page.html index 7527faa1..f2f28794 100644 --- a/apps/client/src/app/pages/landing/landing-page.html +++ b/apps/client/src/app/pages/landing/landing-page.html @@ -55,6 +55,28 @@ +
+
+ + 360° View + Get the full picture of your personal finances across multiple + platforms. + +
+
+ + Web3 Ready + Use Ghostfolio anonymously and own your financial data. + +
+
+ + Open Source + Benefit from continuous improvements through a strong community. + +
+
+

Why Ghostfolio?

@@ -133,19 +155,43 @@
-
-
+
+

How does Ghostfolio work?

Get started in only 3 steps

-
    -
  1. - Sign up anonymously
    (no e-mail address nor credit card required) -
  2. -
  3. Add any of your historical transactions
  4. -
  5. Get valuable insights of your portfolio composition
  6. -
+
+
+ +
+
Sign up anonymously*
+
+ * no e-mail address nor credit card required +
+
+
1
+
+
+
+ +
+
+ Add any of your historical transactions +
+
+
2
+
+
+
+ +
+
+ Get valuable insights of your portfolio composition +
+
+
3
+
diff --git a/apps/client/src/app/pages/landing/landing-page.module.ts b/apps/client/src/app/pages/landing/landing-page.module.ts index d0d02b48..2116d972 100644 --- a/apps/client/src/app/pages/landing/landing-page.module.ts +++ b/apps/client/src/app/pages/landing/landing-page.module.ts @@ -1,6 +1,7 @@ import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { MatButtonModule } from '@angular/material/button'; +import { MatCardModule } from '@angular/material/card'; import { RouterModule } from '@angular/router'; import { GfLogoModule } from '@ghostfolio/ui/logo'; @@ -14,6 +15,7 @@ import { LandingPageComponent } from './landing-page.component'; GfLogoModule, LandingPageRoutingModule, MatButtonModule, + MatCardModule, RouterModule ], schemas: [CUSTOM_ELEMENTS_SCHEMA]