From a03f120761598c77b546adec8272197af3fdbe8e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:37:58 +0000 Subject: [PATCH 1/3] Add next.config.js --- next.config.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 next.config.js diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..4e3a68c --- /dev/null +++ b/next.config.js @@ -0,0 +1,20 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'webuild-dev.s3.eu-north-1.amazonaws.com', + pathname: '/**', + }, + { + protocol: 'https', + hostname: '**.amazonaws.com', + pathname: '/**', + }, + ], + unoptimized: true, + }, +}; + +module.exports = nextConfig; -- 2.49.1 From 5a26c1d07971d8aa81bd1603100e61562450cdd3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:37:59 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 928f9e4..b8535ba 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -15,6 +15,12 @@ export default function RootLayout({ }) { return ( + +