Update page.tsx

This commit is contained in:
CanbiZ 2025-01-23 11:20:10 +01:00
parent ef60152ae0
commit 9b9b02d9a7

View File

@ -12,8 +12,7 @@ const CategoryView = () => {
useEffect(() => { useEffect(() => {
const fetchCategories = async () => { const fetchCategories = async () => {
try { try {
const basePath = process.env.NODE_ENV === "production" ? "/ProxmoxVE" : ""; // Passe den Basis-Pfad an const response = await fetch("/api/categories");
const response = await fetch(`${basePath}/api/categories`);
if (!response.ok) { if (!response.ok) {
throw new Error("Failed to fetch categories"); throw new Error("Failed to fetch categories");
} }
@ -70,9 +69,24 @@ const CategoryView = () => {
<Card <Card
key={category.name} key={category.name}
onClick={() => handleCategoryClick(category)} onClick={() => handleCategoryClick(category)}
className="cursor-pointer hover:shadow-lg" className="cursor-pointer hover:shadow-lg flex flex-col items-center justify-center"
> >
<CardHeader title={category.name} className="text-lg font-semibold" /> <CardContent className="flex flex-col items-center">
<div className="flex flex-wrap justify-center gap-1 mb-2">
{category.scripts && category.scripts.slice(0, 4).map((script, index) => (
<img
key={index}
src={script.logo}
alt={script.name}
className="h-6 w-6 object-contain"
/>
))}
</div>
<h3 className="text-lg font-bold mb-1">{category.name}</h3>
{category.description && (
<p className="text-sm text-gray-500 text-center">{category.description}</p>
)}
</CardContent>
</Card> </Card>
))} ))}
</div> </div>