This commit is contained in:
Iliyan Angelov
2025-11-29 18:05:34 +02:00
parent 4c15d90a6a
commit d7d7a2757a

View File

@@ -273,7 +273,9 @@ const Story = () => {
</Link>
</p>
<h5 className="fw-4 mt-12 mb-12 text-white">
<Link href={`/case-study/${item.slug}`} className="text-white">
{item.title}
</Link>
</h5>
<p className="text-xs">{item.excerpt || item.description?.substring(0, 150) + '...'}</p>
</div>
@@ -300,6 +302,7 @@ const Story = () => {
className={`tp-story-thumb ${isActive ? "thumb-active" : ""}`}
data-loaded={isLoaded}
>
<Link href={`/case-study/${item.slug}`} className="w-100">
<Image
src={imageUrl}
width={600}
@@ -326,6 +329,7 @@ const Story = () => {
}
}}
/>
</Link>
</div>
);
})}