Skip to content

Commit 7df6ef3

Browse files
committed
update docs (sponsors)
1 parent 137eeff commit 7df6ef3

File tree

3 files changed

+32
-17
lines changed

3 files changed

+32
-17
lines changed

website/docusaurus.config.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,6 @@ const config = {
8888
label: 'Cloud',
8989
href: 'https://cloud.keva.dev/',
9090
},
91-
{
92-
label: 'Enterprise',
93-
href: 'https://cloud.keva.dev/',
94-
},
9591
],
9692
},
9793
{

website/src/pages/index.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,16 @@ export default function Home() {
4949
<main>
5050
<HomepageFeatures />
5151
</main>
52-
<div className={styles.grokking}>
53-
<h3>Coordinated by</h3>
54-
<div><img src="https://i.imgur.com/5k8qMpf.png" alt="Grokking Vietnam"/></div>
55-
<div><a href="https://www.grokking.org/" target="_blank" rel="noreferrer">Grokking Vietnam</a></div>
52+
<div className={styles.sponsors}>
53+
<h3>Supported by</h3>
54+
<div className={styles.sponsor}>
55+
<div><img src="https://i.imgur.com/5k8qMpf.png" alt="Grokking Vietnam"/></div>
56+
<div><a href="https://www.grokking.org/" target="_blank" rel="noreferrer">Grokking Vietnam</a></div>
57+
</div>
58+
<div className={styles.sponsor}>
59+
<div><img src="https://i.imgur.com/2FmPAWC.png" alt="Grokking Vietnam"/></div>
60+
<div><a href="https://www.jetbrains.com/" target="_blank" rel="noreferrer">Jetbrains IDEs</a></div>
61+
</div>
5662
</div>
5763
</Layout>
5864
);

website/src/pages/index.module.scss

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,34 @@
5555
}
5656
}
5757

58-
.grokking {
58+
.sponsors {
5959
display: flex;
60-
flex-direction: column;
60+
flex-direction: row;
6161
align-items: center;
6262
justify-content: center;
63-
gap: 10px;
63+
gap: 25px;
6464

65-
img {
66-
width: 100px;
67-
height: 100px;
68-
border-radius: 50%;
65+
// For mobile
66+
@media screen and (max-width: 1068px) {
67+
flex-direction: column;
6968
}
7069

71-
a {
72-
text-decoration: none;
70+
.sponsor {
71+
display: flex;
72+
flex-direction: column;
73+
align-items: center;
74+
justify-content: center;
75+
gap: 10px;
76+
77+
img {
78+
width: 100px;
79+
height: 100px;
80+
border-radius: 50%;
81+
}
82+
83+
a {
84+
text-decoration: none;
85+
}
7386
}
7487

7588
margin-bottom: 2rem;

0 commit comments

Comments
 (0)