We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2cdedc commit 1afe5d4Copy full SHA for 1afe5d4
src/app/(frontend)/[locale]/projects/[id]/page.tsx
@@ -179,7 +179,10 @@ const Page = async ({ params }: Props) => {
179
<Image
180
src={imageFile.url!}
181
alt={imageFile.alt}
182
+ width={imageFile.width!}
183
+ height={imageFile.height!}
184
sizes={imageFile.width! <= imageFile.height! ? '40vw' : '70vw'}
185
+ className="w-auto"
186
style={{ height: `${image.deskConf.imageSize}svh` }}
187
placeholder="blur"
188
blurDataURL={imageFile.sizes!.loading!.url!}
0 commit comments