You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by wa...@apache.org on 2021/08/30 19:39:25 UTC

[pulsar] 01/01: Remove Company Logos From Main Page

This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch dave2wave-patch-2
in repository https://gitbox.apache.org/repos/asf/pulsar.git

commit cbb9ce884bfc3f43702d26e22ef5ea695743269c
Author: Dave Fisher <da...@comcast.net>
AuthorDate: Mon Aug 30 12:38:36 2021 -0700

    Remove Company Logos From Main Page
---
 site2/website/pages/en/index.js | 25 +------------------------
 1 file changed, 1 insertion(+), 24 deletions(-)

diff --git a/site2/website/pages/en/index.js b/site2/website/pages/en/index.js
index d4bc3a8..15d8670 100755
--- a/site2/website/pages/en/index.js
+++ b/site2/website/pages/en/index.js
@@ -168,30 +168,7 @@ const UsersBlock = props => (
     id={props.id}
     background={props.background}>
 
-    <p align="center"><small style={{color: 'black', fontSize: '1.7rem'}}>Used by companies such as</small></p>
-    <div class="logo-wrapper">
-      {
-        featuredUsers.map(
-            c => (
-                (() => {
-                  if (c.hasOwnProperty('logo_white')) {
-                    return <div className="logo-box-background-for-white">
-                      <a href={c.url} title={c.name} target="_blank">
-                        <img src={c.logo} alt={c.name} className={c.logo.endsWith('.svg') ? 'logo-svg' : ''}/>
-                      </a>
-                    </div>
-                  } else {
-                    return <div className="logo-box">
-                      <a href={c.url} title={c.name} target="_blank">
-                        <img src={c.logo} alt={c.name} className={c.logo.endsWith('.svg') ? 'logo-svg' : ''}/>
-                      </a>
-                    </div>
-                  }
-                })()
-            )
-        )}
-    </div>
-    <p align="center"><small style={{color: 'black', fontSize: '1.7rem'}}><a href="/powered-by">... and many more</a></small></p>
+    <p align="center"><small style={{color: 'black', fontSize: '1.7rem'}}><a href="/powered-by">Used by companies such as ...</a></small></p>
 
   </Container>
 );