Skip to content

Commit 7c1d8c5

Browse files
Optimise release video placeholders
1 parent 75623fd commit 7c1d8c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/homepage/ReleaseVideo.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import FeaturedVideo from "../video/FeaturedVideo";
77
const releaseVideoPlaceholderImage = await getImage({
88
src: ReleaseVideoPlaceholder,
99
format: 'webp', // or whatever format you prefer
10-
width: 800, // specify dimensions as needed
11-
height: 450
10+
width: 1408, // specify dimensions as needed
11+
quality: 80,
1212
});
1313
1414
const featuredVideoPlaceholderImage = await getImage({
1515
src: PromoVideoPlaceholder,
1616
format: 'webp', // or whatever format you prefer
17-
width: 800, // specify dimensions as needed
18-
height: 450
17+
width: 1408, // specify dimensions as needed
18+
quality: 80,
1919
});
2020
2121
const releaseVideo = {

0 commit comments

Comments
 (0)