From 1beafd33f1250a5aa062e99284e9d2f07af1c580 Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Thu, 5 Nov 2020 18:16:56 -0300 Subject: [PATCH] Adding right sizes --- pages/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/index.tsx b/pages/index.tsx index 9145d9294..6d5323c94 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -83,8 +83,8 @@ export default function Home({ key={node.path} product={node} // The first image is the largest one in the grid - imgWidth={i === 0 ? 1600 : 820} - imgHeight={i === 0 ? 1600 : 820} + imgWidth={i === 0 ? 1280 : 820} + imgHeight={i === 0 ? 1280 : 820} priority /> ))} @@ -116,8 +116,8 @@ export default function Home({ key={node.path} product={node} // The second image is the largest one in the grid - imgWidth={i === 1 ? 1600 : 820} - imgHeight={i === 1 ? 1600 : 820} + imgWidth={i === 1 ? 1280 : 820} + imgHeight={i === 1 ? 1280 : 820} /> ))}