SandroPacella / sandropaceIIa

https://sandropacella.com
1 stars 0 forks source link

Project Featured Image Sizing #2

Open SandroPacella opened 1 week ago

SandroPacella commented 1 week ago

Project Featured Image Sizing

The featured images on project detail pages are being cropped due to the fixed aspect-video ratio, which doesn't always suit the content of the images.

Current Behavior

Technical Notes

Current implementation in src/app/[id]/page.js:

<div className="relative aspect-video mb-8">
  <Image
    src={project.image}
    alt={project.title}
    fill
    className="object-cover rounded-lg"
    priority
    sizes="(max-width: 1200px) 100vw, 1200px"
  />
</div>

To Do

KamaleshKumarS commented 1 week ago

hey man need any help or you are trying to solve it yourself?