Min images

This commit is contained in:
Belen Curcio
2020-11-06 15:42:01 -03:00
parent 62cc3b2493
commit d74ffb1401
4 changed files with 12 additions and 16 deletions

View File

@@ -91,8 +91,8 @@ export default function Home({
key={node.path}
product={node}
// The first image is the largest one in the grid
imgWidth={i === 0 ? 1280 : 820}
imgHeight={i === 0 ? 1280 : 820}
imgWidth={i === 0 ? 1080 : 540}
imgHeight={i === 0 ? 1080 : 540}
priority
/>
))}
@@ -125,8 +125,8 @@ export default function Home({
key={node.path}
product={node}
// The second image is the largest one in the grid
imgWidth={i === 1 ? 1280 : 820}
imgHeight={i === 1 ? 1280 : 820}
imgWidth={i === 1 ? 1080 : 540}
imgHeight={i === 1 ? 1080 : 540}
/>
))}
</Grid>