diff --git a/src/components/NavHeader.astro b/src/components/NavHeader.astro index 0e3fb33..b99ac99 100644 --- a/src/components/NavHeader.astro +++ b/src/components/NavHeader.astro @@ -8,13 +8,13 @@ import myBackground from "../img/sites/avatar-ht-f.png"; const optimizedBackground = await getImage({ src: myBackground, format: "avif", - quality: 50, - width: 680, + quality: 45, + width: 512, }); const optimizedBackgroundLQ = await getImage({ src: myBackground, format: "webp", - quality: 50, + quality: 45, width: 512, }); ---