diff --git a/CHANGELOG.md b/CHANGELOG.md index 1664e56d4..d78c31053 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Added the _EuroAlternative_ logo to the logo carousel on the landing page - Integrated a theme switcher into _Storybook_ to support toggling between the light and dark mode ### Changed diff --git a/apps/client/src/assets/images/logo-euroalternative.svg b/apps/client/src/assets/images/logo-euroalternative.svg new file mode 100644 index 000000000..44e950857 --- /dev/null +++ b/apps/client/src/assets/images/logo-euroalternative.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libs/ui/src/lib/logo-carousel/logo-carousel.component.scss b/libs/ui/src/lib/logo-carousel/logo-carousel.component.scss index 352f52ee8..0d1817959 100644 --- a/libs/ui/src/lib/logo-carousel/logo-carousel.component.scss +++ b/libs/ui/src/lib/logo-carousel/logo-carousel.component.scss @@ -105,6 +105,10 @@ mask-image: url('/assets/images/logo-dev-community.svg'); } + &.logo-euroalternative { + mask-image: url('/assets/images/logo-euroalternative.svg'); + } + &.logo-hacker-news { mask-image: url('/assets/images/logo-hacker-news.svg'); } diff --git a/libs/ui/src/lib/logo-carousel/logo-carousel.component.ts b/libs/ui/src/lib/logo-carousel/logo-carousel.component.ts index cf50017e6..3d6741d44 100644 --- a/libs/ui/src/lib/logo-carousel/logo-carousel.component.ts +++ b/libs/ui/src/lib/logo-carousel/logo-carousel.component.ts @@ -32,6 +32,14 @@ export class GfLogoCarouselComponent { 'DEV Community - A constructive and inclusive social network for software developers', url: 'https://dev.to' }, + { + className: 'logo-euroalternative', + isMask: true, + name: 'EuroAlternative', + title: + 'EuroAlternative - Discover European Alternatives to Big Tech Companies', + url: 'https://euroalternative.eu/ghostfolio' + }, { className: 'logo-hacker-news', isMask: true,