diff --git a/components/Banner.tsx b/components/Banner.tsx index 0802563..7ee792b 100644 --- a/components/Banner.tsx +++ b/components/Banner.tsx @@ -61,8 +61,9 @@ const Carousel = ({ urls }: { urls: string[] }) => { src={`${STRAPI_URL}${url}`} alt="" className="object-cover opacity-80" - loading={i > 2 ? 'eager' : 'lazy'} + loading={i > 2 ? 'lazy' : 'eager'} fill + quality={100} /> ))} @@ -78,6 +79,7 @@ const SingleBannerImage = () => { style={{ objectFit: 'cover', opacity: 0.8 }} fill loading="eager" + quality={100} /> ) } diff --git a/public/images/banner/banner.jpg b/public/images/banner/banner.jpg index 721aeb3..78cd41e 100644 Binary files a/public/images/banner/banner.jpg and b/public/images/banner/banner.jpg differ