diff --git a/components/team/ExecCard.tsx b/components/team/ExecCard.tsx
index d3027e6..671d565 100644
--- a/components/team/ExecCard.tsx
+++ b/components/team/ExecCard.tsx
@@ -23,7 +23,13 @@ const ExecCard = ({ data, colour }: ExecCardProps) => {
{description}
>
)}
-
+
diff --git a/next.config.js b/next.config.js
index 2011c01..f212c69 100644
--- a/next.config.js
+++ b/next.config.js
@@ -9,6 +9,12 @@ const nextConfig = {
sassOptions: {
includePaths: [path.join(__dirname, "styles")],
},
+ images: {
+ // Not a permanent solution - from ChatGPT, trying to address images not loading
+ // see: https://nextjs.org/docs/pages/api-reference/components/image#devicesizes
+ deviceSizes: [640, 750, 828, 1080, 1200, 1920],
+ imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
+ },
};
module.exports = nextConfig;