Browse Source

Task/conditionally show Sponsors section on about page (#5882)

* Conditionally show sponsors section
pull/5885/head
Thomas Kaul 3 days ago
committed by GitHub
parent
commit
b05eb9ede4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 40
      apps/client/src/app/pages/about/overview/about-overview-page.html

40
apps/client/src/app/pages/about/overview/about-overview-page.html

@ -202,25 +202,27 @@
} }
</div> </div>
<div class="row"> @if (user?.subscription?.type !== 'Premium') {
<div class="col-12"> <div class="row">
<h2 class="h4 mb-3">Sponsors</h2> <div class="col-12">
<div class="text-center"> <h2 class="h4 mb-3">Sponsors</h2>
<small>Browser testing via</small> <div class="text-center">
<br /> <small>Browser testing via</small>
<a <br />
href="https://www.lambdatest.com?utm_medium=sponsor&utm_source=ghostfolio" <a
target="_blank" href="https://www.lambdatest.com?utm_medium=sponsor&utm_source=ghostfolio"
title="LambdaTest - AI Powered Testing Tool" target="_blank"
> title="LambdaTest - AI Powered Testing Tool"
<img >
alt="LambdaTest Logo" <img
height="45" alt="LambdaTest Logo"
src="../assets/images/sponsors/logo-lambdatest.png" height="45"
width="250" src="../assets/images/sponsors/logo-lambdatest.png"
/> width="250"
</a> />
</a>
</div>
</div> </div>
</div> </div>
</div> }
</div> </div>

Loading…
Cancel
Save