@@ -33,80 +33,80 @@ function Languages() {
33
33
{ /* <ul className="grid grid-cols-2 gap-6 xl:gap-8"> */ }
34
34
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
35
35
< Link
36
- className = "flex flex-col items-center space-x-3 p-6 hover:underline"
36
+ className = "hover-label-container flex flex-col items-center space-x-3 p-6 hover:underline"
37
37
to = { useBaseUrl ( "/quickstart/samples-gin" ) }
38
+ data-tooltip = "Golang"
38
39
>
39
40
< img
40
- className = "h-8 w-8"
41
+ className = "h-8 w-8 transition hover:scale-110 "
41
42
src = "/docs/img/golang.svg"
42
- alt = "Go lang logo"
43
+ alt = "Golang logo"
43
44
/>
44
- < p className = "font-semibold" > Go</ p >
45
45
</ Link >
46
46
</ li >
47
47
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
48
48
< Link
49
- className = "flex flex-col items-center space-x-3 p-6 hover:underline"
49
+ className = "hover-label-container flex flex-col items-center space-x-3 p-6 hover:underline"
50
50
to = { useBaseUrl ( "/quickstart/samples-java" ) }
51
+ data-tooltip = "Java"
51
52
>
52
53
< img
53
54
className = "h-8 w-8 transition hover:scale-110"
54
55
src = "/docs/img/java.svg"
55
56
alt = "Java logo"
56
57
/>
57
- < p className = "font-semibold" > Java</ p >
58
58
</ Link >
59
59
</ li >
60
60
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
61
61
< Link
62
- className = "flex flex-col items-center space-x-3 p-6 hover:underline"
62
+ className = "hover-label-container flex flex-col items-center space-x-3 p-6 hover:underline"
63
63
to = { useBaseUrl ( "/quickstart/samples-django" ) }
64
+ data-tooltip = "Python"
64
65
>
65
66
< img
66
- className = "h-8 w-8"
67
+ className = "h-8 w-8 transition hover:scale-110 "
67
68
src = "/docs/img/python.svg"
68
69
alt = "Python logo"
69
70
/>
70
- < p className = "font-semibold" > Python</ p >
71
71
</ Link >
72
72
</ li >
73
73
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
74
74
< Link
75
- className = "flex flex-col items-center space-x-3 p-6 hover:underline"
75
+ className = "hover-label-container flex flex-col items-center space-x-3 p-6 hover:underline"
76
76
to = { useBaseUrl ( "/quickstart/samples-nodejs" ) }
77
+ data-tooltip = "Javascript"
77
78
>
78
79
< img
79
80
className = "h-8 w-8 transition hover:scale-110"
80
81
src = "/docs/img/javascript-logo.svg"
81
82
alt = "Javascript logo"
82
83
/>
83
- < p className = "font-semibold" > Javascript</ p >
84
84
</ Link >
85
85
</ li >
86
86
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
87
87
< Link
88
- className = "flex flex-col items-center space-x-3 p-6 hover:underline"
88
+ className = "hover-label-container flex flex-col items-center space-x-3 p-6 hover:underline"
89
89
to = { useBaseUrl ( "/quickstart/samples-rust" ) }
90
+ data-tooltip = "Rust"
90
91
>
91
92
< img
92
93
className = "h-8 w-8 transition hover:scale-110"
93
94
src = "/docs/img/rust-logo.svg"
94
95
alt = "Javascript logo"
95
96
/>
96
- < p className = "font-semibold" > Rust</ p >
97
97
</ Link >
98
98
</ li >
99
99
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
100
100
< Link
101
- className = "flex flex-col items-center space-x-3 p-6 hover:underline"
101
+ className = "hover-label-container flex flex-col items-center space-x-3 p-6 hover:underline"
102
102
to = { useBaseUrl ( "/quickstart/samples-csharp" ) }
103
+ data-tooltip = "CSharp"
103
104
>
104
105
< img
105
106
className = "h-8 w-8 transition hover:scale-110"
106
107
src = "/docs/img/csharp-logo.svg"
107
108
alt = "Javascript logo"
108
109
/>
109
- < p className = "font-semibold" > CSharp</ p >
110
110
</ Link >
111
111
</ li >
112
112
</ ul >
@@ -116,7 +116,7 @@ function Languages() {
116
116
117
117
function Frameworks ( ) {
118
118
return (
119
- < div className = "flex flex-col rounded-lg bg-[color:var(--ifm-card-background-color)] p-5 shadow transition hover:shadow-lg hover:shadow-[color:var(--ifm-card-shadow-color)] " >
119
+ < div className = "flex flex-col rounded-lg bg-[color:var(--ifm-card-background-color)] p-5 shadow transition hover:shadow-lg" >
120
120
< div className = "flex items-center space-x-4" >
121
121
< svg
122
122
className = "mb-4 h-10 w-10 rounded-lg bg-[color:var(--ifm-color)] p-2 text-[color:var(--ifm-background-color)]"
@@ -135,77 +135,81 @@ function Frameworks() {
135
135
</ svg >
136
136
< h2 className = "mb-4 text-xl font-semibold" > Dependencies Support</ h2 >
137
137
</ div >
138
- < ul className = "grid grid-cols-3 gap-3 lg:gap-5" >
138
+ < ul className = "grid grid-cols-3 gap-3 lg:gap-5" >
139
139
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
140
140
< Link
141
141
to = { useBaseUrl ( "/dependencies/mongo" ) }
142
- className = "flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
142
+ className = "hover-label-container flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
143
+ data-tooltip = "MongoDB"
143
144
>
144
145
< img
145
146
className = "h-8 w-8"
146
147
src = "/docs/img/mongodb-logo.svg"
147
148
alt = "Docker logo"
148
149
/>
149
- < p className = "font-semibold" > MongoDB</ p >
150
150
</ Link >
151
151
</ li >
152
152
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
153
153
< Link
154
154
to = { useBaseUrl ( "/dependencies/http" ) }
155
- className = "flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
155
+ className = "hover-label-container flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
156
+ data-tooltip = "HTTP"
156
157
>
157
158
< img
158
159
className = "h-8 w-8"
159
160
src = "/docs/img/http-logo.svg"
160
161
alt = "HTTP logo"
161
162
/>
162
- < p className = "font-semibold" > HTTP</ p >
163
163
</ Link >
164
164
</ li >
165
165
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
166
166
< Link
167
167
to = { useBaseUrl ( "/dependencies/postgres" ) }
168
- className = "flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
168
+ className = "hover-label-container flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
169
+ data-tooltip = "PostgreSQL"
169
170
>
170
171
< img
171
172
className = "h-8 w-8"
172
173
src = "/docs/img/postgres-logo.svg"
173
174
alt = "PostgresSQL logo"
174
175
/>
175
- < p className = "font-semibold" > PostgresSQL</ p >
176
176
</ Link >
177
177
</ li >
178
178
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
179
179
< Link
180
180
to = { useBaseUrl ( "/dependencies/redis" ) }
181
- className = "flex flex-col items-center justify-center space-y-1 p-6 text-center "
182
- >
181
+ className = "hover-label-container flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
182
+ data-tooltip = "Redis"
183
+ >
183
184
< img
184
185
className = "h-8 w-8"
185
186
src = "/docs/img/redis-logo.svg"
186
187
alt = "Redis logo"
187
188
/>
188
- < p className = "font-semibold" > Redis</ p >
189
189
</ Link >
190
190
</ li >
191
191
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
192
- < Link className = "flex flex-col items-center justify-center space-y-1 p-6 text-center " >
192
+ < Link
193
+ className = "hover-label-container flex flex-col items-center justify-center space-y-1 p-6 text-center "
194
+ data-tooltip = "MySQL"
195
+ >
193
196
< img
194
197
className = "h-8 w-8"
195
198
src = "/docs/img/mysql-logo.svg"
196
199
alt = "MySQL logo"
197
200
/>
198
- < p className = "font-semibold" > MySQL</ p >
199
201
</ Link >
200
202
</ li >
201
203
< li className = "mt-5 flex flex-col space-y-3 text-lg" >
202
- < Link className = "flex flex-col items-center justify-center space-y-1 p-6 text-center " >
204
+ < Link
205
+ className = "hover-label-container flex flex-col items-center justify-center space-y-1 p-6 text-center "
206
+ data-tooltip = "DynamoDB"
207
+ >
203
208
< img
204
209
className = "h-8 w-8"
205
210
src = "/docs/img/dynamodb-logo.svg"
206
211
alt = "DynamoDB logo"
207
212
/>
208
- < p className = "font-semibold" > DynamoDB</ p >
209
213
</ Link >
210
214
</ li >
211
215
{ /*<li className="mt-5 flex flex-col space-y-3 text-lg">*/ }
0 commit comments