Make image width full for LastBlogs and LastProjects

This commit is contained in:
itsfinniii
2026-03-28 13:01:02 +01:00
parent e841c4f433
commit 56cdc5257d
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ const size = calculateSizeClasses(blogs.amount, lastBlogs.length);
<Image <Image
src={getImageUrl(blog.searchEngine.thumbnail.url)} src={getImageUrl(blog.searchEngine.thumbnail.url)}
alt={blog.title} alt={blog.title}
class="flex rounded-2xl shadow-md" class="flex rounded-2xl shadow-md w-full"
width={600} width={600}
height={315} height={315}
/> />

View File

@@ -48,7 +48,7 @@ const size = calculateSizeClasses(projects.amount, lastProjects.length);
<Image <Image
src={getImageUrl(project.searchEngine.thumbnail.url)} src={getImageUrl(project.searchEngine.thumbnail.url)}
alt={project.title} alt={project.title}
class="flex rounded-2xl shadow-md" class="flex rounded-2xl shadow-md w-full"
width={600} width={600}
height={315} height={315}
/> />