chore(website): use same more info mechanism for list with screenshot

This commit is contained in:
Elian Doran
2025-09-27 19:02:13 +03:00
parent b6088f488f
commit ffe30bed75
2 changed files with 3 additions and 6 deletions

View File

@@ -211,12 +211,9 @@ function ListWithScreenshot({ items, horizontal, cardExtra }: {
title={item.title}
onMouseEnter={() => setSelectedItem(item)}
onClick={() => setSelectedItem(item)}
moreInfoUrl={item.moreInfo}
>
{item.description}
<div class="card-footer">
<Link href={selectedItem.moreInfo}>More info</Link>
</div>
</Card>
</li>
))}