@@ -21,8 +21,9 @@ const IconWrapper = ({icon, bg}) => (
21
21
justifyContent : "center" ,
22
22
borderRadius : "50%" ,
23
23
backgroundColor : bg || "#f3f4f6" ,
24
- boxShadow : "0 3px 6px rgba(0,0,0,0.1 )" ,
24
+ boxShadow : "0 4px 12px rgba(0,0,0,0.08 )" ,
25
25
transition : "transform 0.2s ease" ,
26
+ marginTop : "1rem" ,
26
27
} }
27
28
className = "icon-wrapper"
28
29
>
@@ -45,45 +46,45 @@ export default function QuickstartFilter({defaultLanguage = null}) {
45
46
const languages = [
46
47
{
47
48
name : "Go" ,
48
- icon : < FaGolang size = { 36 } color = "#00ADD8" /> ,
49
+ icon : < FaGolang size = { 40 } color = "#00ADD8" /> ,
49
50
bg : "#E0F7FA" ,
50
51
} ,
51
52
{
52
53
name : "Python" ,
53
- icon : < FaPython size = { 36 } color = "#3776AB" /> ,
54
+ icon : < FaPython size = { 40 } color = "#3776AB" /> ,
54
55
bg : "#E8F0FE" ,
55
56
} ,
56
57
{
57
58
name : "Java" ,
58
- icon : < FaJava size = { 36 } color = "#007396" /> ,
59
+ icon : < FaJava size = { 40 } color = "#007396" /> ,
59
60
bg : "#FDEDED" ,
60
61
} ,
61
62
{
62
63
name : "JS/TS" ,
63
- icon : < IoLogoJavascript size = { 36 } color = "#F7DF1E" /> ,
64
+ icon : < IoLogoJavascript size = { 40 } color = "#F7DF1E" /> ,
64
65
bg : "#FFF8E1" ,
65
66
} ,
66
67
{
67
68
name : "Rust" ,
68
- icon : < FaRust size = { 36 } color = "#DEA584" /> ,
69
+ icon : < FaRust size = { 40 } color = "#DEA584" /> ,
69
70
bg : "#FFF3E0" ,
70
71
} ,
71
72
{
72
73
name : "C#" ,
73
- icon : < TbBrandCSharp size = { 36 } color = "#512BD4" /> ,
74
+ icon : < TbBrandCSharp size = { 40 } color = "#512BD4" /> ,
74
75
bg : "#EDE7F6" ,
75
76
} ,
76
77
] ;
77
78
78
79
const servers = [
79
80
{
80
81
name : "Local" ,
81
- icon : < FaLaptopCode size = { 36 } color = "#f97316" /> ,
82
+ icon : < FaLaptopCode size = { 40 } color = "#f97316" /> ,
82
83
bg : "#FFF3E0" ,
83
84
} ,
84
85
{
85
86
name : "Docker" ,
86
- icon : < FaDocker size = { 36 } color = "#2496ED" /> ,
87
+ icon : < FaDocker size = { 40 } color = "#2496ED" /> ,
87
88
bg : "#E3F2FD" ,
88
89
} ,
89
90
] ;
@@ -172,7 +173,7 @@ export default function QuickstartFilter({defaultLanguage = null}) {
172
173
// Styles
173
174
const headingStyle = {
174
175
textAlign : "left" ,
175
- marginLeft : "1rem " ,
176
+ marginLeft : "2rem " ,
176
177
fontSize : "1.4rem" ,
177
178
fontWeight : "600" ,
178
179
} ;
@@ -183,22 +184,22 @@ const serverContainer = {
183
184
gap : "1.5rem" ,
184
185
justifyContent : "flex-start" ,
185
186
marginTop : "1.5rem" ,
186
- marginLeft : "1rem " ,
187
+ marginLeft : "2rem " ,
187
188
} ;
188
189
189
190
const stepContainer = {
190
191
display : "flex" ,
191
192
flexWrap : "wrap" ,
192
193
gap : "1.5rem" ,
193
- marginLeft : "1rem " ,
194
+ marginLeft : "2rem " ,
194
195
justifyContent : "flex-start" ,
195
196
marginTop : "1.5rem" ,
196
197
} ;
197
198
198
199
const buttonCard = {
199
200
border : "2px solid #ddd" ,
200
201
borderRadius : "12px" ,
201
- padding : "1rem 2rem" ,
202
+ padding : ".5rem 2rem" ,
202
203
cursor : "pointer" ,
203
204
background : "#fff" ,
204
205
transition : "all 0.2s ease" ,
@@ -210,12 +211,14 @@ const gridContainer = {
210
211
gap : "1.5rem" ,
211
212
gridTemplateColumns : "repeat(auto-fit, minmax(250px, 1fr))" ,
212
213
marginTop : "2rem" ,
214
+ paddingLeft : "2rem" ,
215
+ paddingRight : "2rem" ,
213
216
} ;
214
217
215
218
const cardStyle = {
216
219
border : "1px solid #eee" ,
217
220
borderRadius : "12px" ,
218
- padding : "1rem " ,
221
+ padding : "1.5rem " ,
219
222
background : "#fff" ,
220
223
boxShadow : "0 2px 6px rgba(0, 0, 0, 0.08)" ,
221
224
} ;
0 commit comments