Feature/simplify header (#1027)

* Hide pricing page link for Premium users

* Harmonize content

* Update changelog
pull/1029/head
Thomas Kaul 2 years ago committed by GitHub
parent 1610150427
commit a0a26cfa58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
### Changed
- Simplified the header
### Fixed ### Fixed
- Fixed an issue with the currency inconsistency in the _Yahoo Finance_ service (convert from `ILA` to `ILS`) - Fixed an issue with the currency inconsistency in the _Yahoo Finance_ service (convert from `ILA` to `ILS`)

@ -66,7 +66,9 @@
>Resources</a >Resources</a
> >
<a <a
*ngIf="hasPermissionForSubscription" *ngIf="
hasPermissionForSubscription && user?.subscription?.type === 'Basic'
"
class="d-none d-sm-block mx-1" class="d-none d-sm-block mx-1"
i18n i18n
mat-flat-button mat-flat-button
@ -203,7 +205,9 @@
>Resources</a >Resources</a
> >
<a <a
*ngIf="hasPermissionForSubscription" *ngIf="
hasPermissionForSubscription && user?.subscription?.type === 'Basic'
"
class="d-block d-sm-none" class="d-block d-sm-none"
i18n i18n
mat-menu-item mat-menu-item

@ -4,11 +4,11 @@
<h3 class="d-flex justify-content-center mb-3" i18n>About Ghostfolio</h3> <h3 class="d-flex justify-content-center mb-3" i18n>About Ghostfolio</h3>
<div class="about-container"> <div class="about-container">
<p> <p>
<strong>Ghostfolio</strong> is a lightweight wealth management Ghostfolio is a lightweight wealth management application for
application for individuals to keep track of stocks, ETFs or individuals to keep track of stocks, ETFs or cryptocurrencies and make
cryptocurrencies and make solid, data-driven investment decisions. The solid, data-driven investment decisions. The source code is fully
source code is fully available as open source software (OSS). The available as open source software (OSS). The project has been
project has been initiated by initiated by
<a href="https://dotsilver.ch" title="Website of Thomas Kaul" <a href="https://dotsilver.ch" title="Website of Thomas Kaul"
>Thomas Kaul</a >Thomas Kaul</a
> >

@ -16,7 +16,9 @@
<div class="pr-1 w-50" i18n>Membership</div> <div class="pr-1 w-50" i18n>Membership</div>
<div class="pl-1 w-50"> <div class="pl-1 w-50">
<div class="align-items-center d-flex mb-1"> <div class="align-items-center d-flex mb-1">
{{ user?.subscription?.type }} <a [routerLink]="['/pricing']"
>{{ user?.subscription?.type }}</a
>
<ion-icon <ion-icon
*ngIf="user?.subscription?.type === 'Premium'" *ngIf="user?.subscription?.type === 'Premium'"
class="ml-1 text-muted" class="ml-1 text-muted"

@ -2,15 +2,6 @@
color: rgb(var(--dark-primary-text)); color: rgb(var(--dark-primary-text));
display: block; display: block;
a {
color: rgba(var(--palette-primary-500), 1);
font-weight: 500;
&:hover {
color: rgba(var(--palette-primary-300), 1);
}
}
gf-access-table { gf-access-table {
overflow-x: auto; overflow-x: auto;

@ -56,9 +56,8 @@
<strong>personal investment strategy</strong>. <strong>personal investment strategy</strong>.
</h2> </h2>
<p class="lead"> <p class="lead">
<strong>Ghostfolio</strong> empowers busy people to keep track of Ghostfolio empowers busy people to keep track of stocks, ETFs or
stocks, ETFs or cryptocurrencies and make solid, data-driven investment cryptocurrencies and make solid, data-driven investment decisions.
decisions.
</p> </p>
</div> </div>
</div> </div>

@ -6,15 +6,14 @@
</h3> </h3>
<div class="mb-4"> <div class="mb-4">
<p> <p>
Our official Our official Ghostfolio Premium cloud offering is the easiest way to
<strong>Ghostfolio Premium</strong> cloud offering is the easiest way get started. Due to the time it saves, this will be the best option
to get started. Due to the time it saves, this will be the best option
for most people. The revenue is used for covering the hosting costs. for most people. The revenue is used for covering the hosting costs.
</p> </p>
<p> <p>
If you prefer to run <strong>Ghostfolio</strong> on your own If you prefer to run Ghostfolio on your own infrastructure, please
infrastructure, please find the source code and further instructions find the source code and further instructions on
on <a href="https://github.com/ghostfolio/ghostfolio">GitHub</a>. <a href="https://github.com/ghostfolio/ghostfolio">GitHub</a>.
</p> </p>
</div> </div>
<div class="row"> <div class="row">

Loading…
Cancel
Save