From 448da9c40010267c7aa7839d414a239f3f10886d Mon Sep 17 00:00:00 2001
From: Thomas <4159106+dtslvr@users.noreply.github.com>
Date: Wed, 21 Sep 2022 22:13:44 +0200
Subject: [PATCH] Extend landing page
---
.../src/app/pages/landing/landing-page.html | 64 ++++++++++++++++---
.../app/pages/landing/landing-page.module.ts | 2 +
2 files changed, 57 insertions(+), 9 deletions(-)
diff --git a/apps/client/src/app/pages/landing/landing-page.html b/apps/client/src/app/pages/landing/landing-page.html
index 7527faa13..f2f287940 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
-
- -
- Sign up anonymously
(no e-mail address nor credit card required)
-
- - Add any of your historical transactions
- - Get valuable insights of your portfolio composition
-
+
+
+
+
+
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 d0d02b480..2116d972d 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]