diff --git a/src/pages/index.js b/src/pages/index.js index f840222..e057649 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -105,7 +105,7 @@ const IndexPage = ({ const vibrant = getVibrant(image); const ar = getAspectRatio(image); - const isLandscape = isClient ? ar > 1 : true; + const imageIsLandscape = isClient ? ar > 1 : true; return ( <> @@ -119,7 +119,7 @@ const IndexPage = ({
@@ -136,9 +138,9 @@ const IndexPage = ({

@@ -162,7 +165,7 @@ const IndexPage = ({
)} - {isLandscape && ( + {imageIsLandscape && (