fix: update image source path in blog post component

This commit is contained in:
Thuan Bui
2026-03-14 16:13:16 +07:00
parent 52d1186e8f
commit d0f195e82f
+1 -5
View File
@@ -62,11 +62,7 @@ const metadata = {
{
image && (
<div class="reveal relative mb-8 h-96 w-full overflow-hidden rounded-xl shadow-lg">
<img
src={`/images/${image}`}
alt={title}
class="h-full w-full object-cover"
/>
<img src={image} alt={title} class="h-full w-full object-cover" />
</div>
)
}