From 638ae3f7fa06d82b64611ffd5326788941fcce49 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 16 Apr 2022 15:35:31 +0200 Subject: [PATCH] Feature/add boringly getting rich guide to resources page (#836) * Add "Boringly Getting Rich" guide * Update changelog --- CHANGELOG.md | 1 + .../app/pages/resources/resources-page.html | 196 ++++++++++-------- .../app/pages/resources/resources-page.scss | 12 +- 3 files changed, 110 insertions(+), 99 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f115e0206..83b8db7a0 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 - Added support to export a single future activity (draft) as an `.ics` file +- Added the _Boringly Getting Rich_ guide to the resources section ## 1.137.0 - 15.04.2022 diff --git a/apps/client/src/app/pages/resources/resources-page.html b/apps/client/src/app/pages/resources/resources-page.html index e501fe87d..d97cf8952 100644 --- a/apps/client/src/app/pages/resources/resources-page.html +++ b/apps/client/src/app/pages/resources/resources-page.html @@ -1,105 +1,117 @@
-

Resources

- - -

Market

-
-
-
-
Fear & Greed Index
-
- The fear and greed index was developed by CNNMoney to - measure the primary emotions (fear and greed) that influence - how much investors are willing to pay for stocks. -
- -
+

Resources

+

Guides

+
+
+
+

Boringly Getting Rich

+
+ The Boringly Getting Rich guide supports you to get started + with investing. It introduces a strategy utilizing a broadly + diversified, low-cost portfolio excluding the risks of individual + stocks.
-
-
-
Inflation Chart
-
- Inflation Chart helps you find the intrinsic value of stock - markets, stock prices, goods and services by adjusting them to - the amount of the money supply (M0, M1, M2) or price of other - goods (food or oil). -
- -
+
-

Glossary

-
-
- -
-
Buy and Hold
-
- Buy and hold is a passive investment strategy where you buy - assets and hold them for a long period regardless of - fluctuations in the market. -
- -
+
+
+

Market

+
+
+
+

Fear & Greed Index

+
+ The fear and greed index was developed by CNNMoney to + measure the primary emotions (fear and greed) that influence how + much investors are willing to pay for stocks.
-
- -
-
Dollar-Cost Averaging (DCA)
-
- Dollar-cost averaging is an investment strategy where you - split the total amount to be invested across periodic - purchases of a target asset to reduce the impact of volatility - on the overall purchase. -
- -
+ -
- -
-
Financial Independence
-
- Financial independence is the status of having enough income, - for example with a passive income like dividends, to cover - your living expenses for the rest of your life. -
- -
+
+
+
+
+

Inflation Chart

+
+ Inflation Chart helps you find the intrinsic value of stock + markets, stock prices, goods and services by adjusting them to the + amount of the money supply (M0, M1, M2) or price of other goods + (food or oil). +
+ +
+
+
+

Glossary

+
+
+
+

Buy and Hold

+
+ Buy and hold is a passive investment strategy where you buy assets + and hold them for a long period regardless of fluctuations in the + market. +
+ +
+
+
+
+

Dollar-Cost Averaging (DCA)

+
+ Dollar-cost averaging is an investment strategy where you split + the total amount to be invested across periodic purchases of a + target asset to reduce the impact of volatility on the overall + purchase. +
+ +
+
+
+
+

Financial Independence

+
+ Financial independence is the status of having enough income, for + example with a passive income like dividends, to cover your living + expenses for the rest of your life. +
+
- - +
+
diff --git a/apps/client/src/app/pages/resources/resources-page.scss b/apps/client/src/app/pages/resources/resources-page.scss index 01a013378..4a8680714 100644 --- a/apps/client/src/app/pages/resources/resources-page.scss +++ b/apps/client/src/app/pages/resources/resources-page.scss @@ -2,14 +2,12 @@ color: rgb(var(--dark-primary-text)); display: block; - .mat-card { - a { - color: rgba(var(--palette-primary-500), 1); - font-weight: 500; + a { + color: rgba(var(--palette-primary-500), 1); + font-weight: 500; - &:hover { - color: rgba(var(--palette-primary-300), 1); - } + &:hover { + color: rgba(var(--palette-primary-300), 1); } } }