From 145df0779e5db7d9ba8f5e86d5576decc5287abf Mon Sep 17 00:00:00 2001 From: Brian Freitag Date: Tue, 12 Nov 2024 12:14:16 -0600 Subject: [PATCH] fix path to images --- overrides/home/carousel/items.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/overrides/home/carousel/items.js b/overrides/home/carousel/items.js index b26342513..809100a32 100644 --- a/overrides/home/carousel/items.js +++ b/overrides/home/carousel/items.js @@ -3,20 +3,20 @@ export default [ link: 'https://earth.gov/ghgcenter', title: 'U.S. Greenhouse Gas Center', description: "Uniting Data and Technology to Empower Tomorrow's Climate Solutions", - image: new URL('../media/earth-1.jpg', import.meta.url).href, + image: new URL('../../media/earth-1.jpg', import.meta.url).href, imageAlt: 'Earth with Greenhouse Gas Emissions shaded in red' }, { link: 'https://earth.gov/sealevel', title: 'Global Sea Level Rise', description: 'Rising Seas, Changing Coasts', - image: new URL('../media/global-slr.jpg', import.meta.url).href, + image: new URL('../../media/global-slr.jpg', import.meta.url).href, imageAlt: 'Coastline with crashing waves' }, { link: 'https://earth.gov/sealevel/us', title: 'U.S. Sea Level Rise', description: 'Rising Seas, Changing Coasts', - image: new URL('../media/seaside-background.jpg', import.meta.url).href, + image: new URL('../../media/seaside-background.jpg', import.meta.url).href, imageAlt: 'Coastline with crashing waves' }]