diff --git a/blocks/main/foundation-preview/foundation-preview.module.css b/blocks/main/foundation-preview/foundation-preview.module.css index 72af9ef19df..bb7c9db559a 100644 --- a/blocks/main/foundation-preview/foundation-preview.module.css +++ b/blocks/main/foundation-preview/foundation-preview.module.css @@ -166,3 +166,8 @@ text-transform: none; } } + +.gradleLogo { + max-height: 30px; + margin-right: 0; +} diff --git a/blocks/main/foundation-preview/foundation-preview.tsx b/blocks/main/foundation-preview/foundation-preview.tsx index 867f60fb811..c9ee987e92b 100644 --- a/blocks/main/foundation-preview/foundation-preview.tsx +++ b/blocks/main/foundation-preview/foundation-preview.tsx @@ -40,7 +40,9 @@ export const FoundationPreview: FC = ({title, descriptio
{companies.map(company => ( - {`${company.name} + {`${company.name} ))}
@@ -65,4 +67,4 @@ export const FoundationLearnMoreButton: FC = () => ( more -); \ No newline at end of file +); diff --git a/pages/index.tsx b/pages/index.tsx index fb9581acdb9..afd32b71204 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -27,7 +27,7 @@ import { StickyHeader } from '../components/sticky-header/sticky-header'; import MultiplatformPreviewImage from '../public/images/main/multiplatform-preview.svg'; -import GradleLogo from '../public/images/companies/gradle.svg'; +import GradleLogo from '../public/images/companies/gradle-logo.png'; import UberLogo from '../public/images/companies/uber.svg'; import AtlassianLogo from '../public/images/companies/atlassian.svg'; import GoogleLogo from '../public/images/companies/google.svg'; diff --git a/public/images/companies/gradle-logo.png b/public/images/companies/gradle-logo.png new file mode 100644 index 00000000000..8cad443fb95 Binary files /dev/null and b/public/images/companies/gradle-logo.png differ