Skip to content

Commit a7c99f3

Browse files
feat: improve language section
1 parent 6980190 commit a7c99f3

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

website/src/homepage/Languages.vue

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
<template>
22
<div>
33
<div class="section-title">
4-
<h1>Supported Languages</h1>
4+
<h1>20+ Supported Languages</h1>
55
</div>
66
<div class="languages">
77
<a href="/catalog/c/">
88
<img src='/icons/C.svg'/>
99
</a>
1010
<img src='/icons/CSharp.svg'/>
11-
<img src='/icons/Go.svg'/>
12-
<img src='/icons/Java.svg'/>
11+
<a href="/catalog/go/">
12+
<img src='/icons/Go.svg'/>
13+
</a>
14+
<a href="/catalog/java/">
15+
<img src='/icons/Java.svg'/>
16+
</a>
1317
<img src='/icons/JS.svg'/>
1418
<img src='/icons/Kotlin.svg'/>
1519
<a href="/catalog/python/">
@@ -21,6 +25,12 @@
2125
<a href="/catalog/typescript/">
2226
<img src='/icons/TS.svg'/>
2327
</a>
28+
<p>
29+
See more in the
30+
<a class="link" href="/reference/languages.html">full list</a>.
31+
Custom languages are also
32+
<a class="link" href="/advanced/custom-language.html">loadable</a>.
33+
</p>
2434
</div>
2535
</div>
2636
</template>
@@ -39,6 +49,12 @@
3949
opacity: 0.5;
4050
letter-spacing: -0.02em;
4151
}
52+
p {
53+
opacity: 0.5;
54+
}
55+
a.link {
56+
text-decoration: underline;
57+
}
4258
.feature {
4359
flex: 0 0 100vw;
4460
scroll-snap-align: start;

0 commit comments

Comments
 (0)