Specify width for IMG component as equal to page project page width
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 4m29s

This commit is contained in:
2025-11-26 18:04:31 +10:30
parent 3f2e1fa340
commit 978ff3e0c6

View File

@@ -10,7 +10,7 @@ const image = getImageByPath(src);
{ {
image && ( image && (
<div class="my-8"> <div class="my-8">
<Image src={image} alt={alt} /> <Image src={image} alt={alt} width={896} />
<div class="mt-2 block w-full text-center text-sm italic">{alt}</div> <div class="mt-2 block w-full text-center text-sm italic">{alt}</div>
</div> </div>
) )