@@ -89,6 +89,9 @@ const Section = styled.div`
89
89
@media (max-width: ${ ( props ) => props . theme . breakpoints . m } ) {
90
90
margin-right: 2rem;
91
91
}
92
+ @media (max-width: ${ ( props ) => props . theme . breakpoints . s } ) {
93
+ margin-right: 0;
94
+ }
92
95
93
96
& > h2 {
94
97
margin-top: 1rem;
@@ -260,7 +263,7 @@ const HomePage = ({ data }) => {
260
263
{
261
264
img : {
262
265
src : data . individuals ,
263
- alt : "page-individuals" ,
266
+ alt : "page-home-sections- individuals-image-alt " ,
264
267
} ,
265
268
title : "page-home-sections-individuals-title" ,
266
269
desc : "page-home-sections-individuals-desc" ,
@@ -272,7 +275,7 @@ const HomePage = ({ data }) => {
272
275
{
273
276
img : {
274
277
src : data . developers ,
275
- alt : "page-developers" ,
278
+ alt : "page-home-sections- developers-image-alt " ,
276
279
} ,
277
280
title : "page-home-sections-developers-title" ,
278
281
desc : "page-home-sections-developers-desc" ,
@@ -284,7 +287,7 @@ const HomePage = ({ data }) => {
284
287
{
285
288
img : {
286
289
src : data . enterprise ,
287
- alt : "page-enterprise" ,
290
+ alt : "page-home-sections- enterprise-image-alt " ,
288
291
} ,
289
292
title : "page-home-sections-enterprise-title" ,
290
293
desc : "page-home-sections-enterprise-desc" ,
@@ -404,7 +407,7 @@ export default HomePage
404
407
export const personaImage = graphql `
405
408
fragment personaImage on File {
406
409
childImageSharp {
407
- fixed(height: 100 ) {
410
+ fixed(height: 200 ) {
408
411
...GatsbyImageSharpFixed
409
412
}
410
413
}
@@ -420,13 +423,13 @@ export const query = graphql`
420
423
}
421
424
}
422
425
}
423
- individuals: file(relativePath: { eq: "home/cats .png" }) {
426
+ individuals: file(relativePath: { eq: "home/doge_computer .png" }) {
424
427
...personaImage
425
428
}
426
- developers: file(relativePath: { eq: "home/developers .png" }) {
429
+ developers: file(relativePath: { eq: "home/developers_eth_lego .png" }) {
427
430
...personaImage
428
431
}
429
- enterprise: file(relativePath: { eq: "home/enterprise .png" }) {
432
+ enterprise: file(relativePath: { eq: "home/enterprise_eth .png" }) {
430
433
...personaImage
431
434
}
432
435
}
0 commit comments