integration/homepage-background: fix image size

the API returns a 1900x1200 image, make sure we use the correct size
here
This commit is contained in:
Emmanuel Pelletier
2024-05-07 18:31:57 +02:00
parent 76a5bf289a
commit 07d335ac7c

View File

@@ -94,7 +94,7 @@ export const HomepageContent = ({ tagline, lasuiteApiUrl, serviceId, children }:
src={`${lasuiteApiUrl}/api/backgrounds/v1/${serviceId || "default"}.jpg`} src={`${lasuiteApiUrl}/api/backgrounds/v1/${serviceId || "default"}.jpg`}
alt="" alt=""
width="1920" width="1920"
height="1080" height="1200"
/> />
</picture> </picture>
)} )}