Browse Source

Bugfix/spacing in testimonials of landing page (#7398)

* Fix spacing

* Update changelog
pull/7402/head^2
Thomas Kaul 18 hours ago
committed by GitHub
parent
commit
60f34f4759
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 6
      apps/client/src/app/pages/landing/landing-page.html

4
CHANGELOG.md

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the language localization for Polish (`pl`) - Improved the language localization for Polish (`pl`)
### Fixed
- Improved the spacing in the testimonial section on the landing page
## 3.32.0 - 2026-07-22 ## 3.32.0 - 2026-07-22
### Changed ### Changed

6
apps/client/src/app/pages/landing/landing-page.html

@ -247,11 +247,11 @@
@if (testimonial.url) { @if (testimonial.url) {
<a target="_blank" [href]="testimonial.url">{{ <a target="_blank" [href]="testimonial.url">{{
testimonial.author testimonial.author
}}</a> }}</a
>,
} @else { } @else {
<span>{{ testimonial.author }}</span> <span>{{ testimonial.author }},</span>
} }
,
{{ testimonial.country }} {{ testimonial.country }}
</div> </div>
</div> </div>

Loading…
Cancel
Save