Skip to content

Commit 0fb5a50

Browse files
committed
ktl-1617 feat: add kotzilla logo
1 parent 34d981c commit 0fb5a50

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

blocks/main/foundation-preview/foundation-preview.module.css

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,23 +83,22 @@
8383
}
8484
}
8585

86-
@media (--ktl-ds) {
86+
@media (--ktl-tl-min) {
8787
.foundationPreviewImage {
8888
right: -48px;
8989
top: -6px;
9090
}
9191

9292
.companies {
9393
flex-wrap: wrap;
94+
align-items: center;
9495
gap: 8px;
96+
max-width: 684px;
9597
}
9698

9799
.companyLogo {
98100
margin-right: 10px;
99-
}
100-
101-
.companyLogo:nth-child(2) {
102-
margin-right: 50%;
101+
display: flex;
103102
}
104103

105104
.buttonWrap {
@@ -160,4 +159,4 @@
160159
@media (--ktl-tl) {
161160
text-transform: none;
162161
}
163-
}
162+
}

pages/index.tsx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ import GradleLogo from '../public/images/companies/gradle.svg';
3131
import UberLogo from '../public/images/companies/uber.svg';
3232
import AtlassianLogo from '../public/images/companies/atlassian.svg';
3333
import GoogleLogo from '../public/images/companies/google.svg';
34-
import JetbrainsLogo from '../public/images/companies/jetbrains.svg';
34+
// import JetbrainsLogo from '../public/images/companies/jetbrains.svg';
35+
import JetbrainsLogoSquare from '../public/images/companies/jetbrains-logo-square.svg';
3536
import ShopifyLogo from '../public/images/companies/shopify.svg';
3637
import TouchlabLogo from '../public/images/companies/touchlab.svg';
38+
import KotzillaLogo from '../public/images/companies/kotzilla-logo.svg'
3739

3840
import McDonaldsLogo from '../public/images/companies/mcdonalds.svg';
3941
import AWSLogo from '../public/images/companies/aws.svg';
@@ -99,7 +101,7 @@ const kotlinUsageHighlightsCases = [
99101
const kotlinFoundationCompanies = [
100102
{
101103
name: 'JetBrains',
102-
logo: JetbrainsLogo,
104+
logo: JetbrainsLogoSquare,
103105
link: 'https://www.jetbrains.com/'
104106
},
105107
{
@@ -126,7 +128,13 @@ const kotlinFoundationCompanies = [
126128
name: 'Touchlab',
127129
logo: TouchlabLogo,
128130
link: 'https://touchlab.co/'
129-
}
131+
},
132+
{
133+
name: 'Kotzilla',
134+
logo: KotzillaLogo,
135+
link: 'https://kotzilla.io/'
136+
},
137+
130138
];
131139

132140
export async function getStaticProps() {

0 commit comments

Comments
 (0)