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; 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 ( +
+ + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 306c846..3e3bd4e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -165,11 +165,11 @@ export default function LandingPage() { mediaItems={[ { imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/a-mobile-app-ingredient-input-screen-wit-1772651575762-1165d0de.png?_wi=1", imageAlt: "Ingredient input interface" + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/a-mobile-app-ingredient-input-screen-wit-1772651575762-1165d0de.png", imageAlt: "Ingredient input interface" }, { imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/beautiful-recipe-result-cards-with-glass-1772651576068-e357f495.png?_wi=1", imageAlt: "Recipe result cards" + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/beautiful-recipe-result-cards-with-glass-1772651576068-e357f495.png", imageAlt: "Recipe result cards" }, { imageSrc: @@ -181,7 +181,7 @@ export default function LandingPage() { }, { imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/a-cultural-music-player-interface-showin-1772651576437-2be31020.png?_wi=1", imageAlt: "Cultural music player" + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/a-cultural-music-player-interface-showin-1772651576437-2be31020.png", imageAlt: "Cultural music player" }, ]} mediaAnimation="blur-reveal" @@ -226,15 +226,15 @@ export default function LandingPage() { products={[ { id: "ingredient-input", name: "Smart Ingredient Input", price: "Voice & Camera Scanning", imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/a-mobile-app-ingredient-input-screen-wit-1772651575762-1165d0de.png?_wi=2", imageAlt: "Ingredient input interface" + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/a-mobile-app-ingredient-input-screen-wit-1772651575762-1165d0de.png", imageAlt: "Ingredient input interface" }, { id: "recipe-generation", name: "AI Recipe Generation", price: "Instant Suggestions", imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/beautiful-recipe-result-cards-with-glass-1772651576068-e357f495.png?_wi=2", imageAlt: "Recipe cards display" + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/beautiful-recipe-result-cards-with-glass-1772651576068-e357f495.png", imageAlt: "Recipe cards display" }, { id: "music-system", name: "Cultural Music System", price: "Immersive Experience", imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/a-cultural-music-player-interface-showin-1772651576437-2be31020.png?_wi=2", imageAlt: "Music player interface" + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUcMfqJIbBXtBhmBEoWXMLyB4X/a-cultural-music-player-interface-showin-1772651576437-2be31020.png", imageAlt: "Music player interface" }, ]} animationType="slide-up"