1
0
mirror of https://github.com/community-scripts/ProxmoxVE.git synced 2025-02-01 14:51:50 +00:00

Update page.tsx

This commit is contained in:
CanbiZ 2025-01-27 14:13:16 +01:00 committed by GitHub
parent 43f05b3aba
commit 47bf8e6f86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -176,6 +176,22 @@ const CategoryView = () => {
>
<CardContent className="flex flex-col items-center">
<h3 className="text-xl font-bold mb-4">{category.name}</h3>
<div className="flex justify-center gap-2 mb-4">
{category.scripts &&
category.scripts.slice(0, 5).map((script, i) => (
<img
key={i}
src={script.logo || defaultLogo}
alt={script.name || "Script logo"}
title={script.name} // Hover zeigt den Scriptnamen an
className="h-8 w-8 object-contain cursor-pointer"
onClick={(e) => {
e.stopPropagation(); // Verhindert Klick auf die Kategorie
handleScriptClick(script.slug);
}}
/>
))}
</div>
<p className="text-sm text-gray-400 text-center">
{(category as any).description || "No description available."}
</p>