From 827a65711edf8335dc0b067c09869744b401b6c4 Mon Sep 17 00:00:00 2001 From: David Requeno <108202767+DavidReque@users.noreply.github.com> Date: Wed, 29 Apr 2026 11:58:39 -0600 Subject: [PATCH] Task/integrate EuroAlternative into logo carousel (#6796) * Integrate EuroAlternative logo * Update changelog --- CHANGELOG.md | 1 + apps/client/src/assets/images/logo-euroalternative.svg | 1 + .../ui/src/lib/logo-carousel/logo-carousel.component.scss | 4 ++++ libs/ui/src/lib/logo-carousel/logo-carousel.component.ts | 8 ++++++++ 4 files changed, 14 insertions(+) create mode 100644 apps/client/src/assets/images/logo-euroalternative.svg 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,