Browse Source

Task/integrate EuroAlternative into logo carousel (#6796)

* Integrate EuroAlternative logo

* Update changelog
pull/6720/head
David Requeno 2 days ago
committed by GitHub
parent
commit
827a65711e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 1
      apps/client/src/assets/images/logo-euroalternative.svg
  3. 4
      libs/ui/src/lib/logo-carousel/logo-carousel.component.scss
  4. 8
      libs/ui/src/lib/logo-carousel/logo-carousel.component.ts

1
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

1
apps/client/src/assets/images/logo-euroalternative.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.4 KiB

4
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');
}

8
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,

Loading…
Cancel
Save