Browse Source
Task/conditionally show Sponsors section on about page (#5882)
* Conditionally show sponsors section
pull/5848/head^2
Thomas Kaul
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
21 additions and
19 deletions
-
apps/client/src/app/pages/about/overview/about-overview-page.html
|
|
|
@ -202,25 +202,27 @@ |
|
|
|
} |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
<div class="col-12"> |
|
|
|
<h2 class="h4 mb-3">Sponsors</h2> |
|
|
|
<div class="text-center"> |
|
|
|
<small>Browser testing via</small> |
|
|
|
<br /> |
|
|
|
<a |
|
|
|
href="https://www.lambdatest.com?utm_medium=sponsor&utm_source=ghostfolio" |
|
|
|
target="_blank" |
|
|
|
title="LambdaTest - AI Powered Testing Tool" |
|
|
|
> |
|
|
|
<img |
|
|
|
alt="LambdaTest Logo" |
|
|
|
height="45" |
|
|
|
src="../assets/images/sponsors/logo-lambdatest.png" |
|
|
|
width="250" |
|
|
|
/> |
|
|
|
</a> |
|
|
|
@if (user?.subscription?.type !== 'Premium') { |
|
|
|
<div class="row"> |
|
|
|
<div class="col-12"> |
|
|
|
<h2 class="h4 mb-3">Sponsors</h2> |
|
|
|
<div class="text-center"> |
|
|
|
<small>Browser testing via</small> |
|
|
|
<br /> |
|
|
|
<a |
|
|
|
href="https://www.lambdatest.com?utm_medium=sponsor&utm_source=ghostfolio" |
|
|
|
target="_blank" |
|
|
|
title="LambdaTest - AI Powered Testing Tool" |
|
|
|
> |
|
|
|
<img |
|
|
|
alt="LambdaTest Logo" |
|
|
|
height="45" |
|
|
|
src="../assets/images/sponsors/logo-lambdatest.png" |
|
|
|
width="250" |
|
|
|
/> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
} |
|
|
|
</div> |
|
|
|
|