chore:little fixes and formating and linting and patches

This commit is contained in:
2026-03-31 15:50:54 +02:00
parent a1ce71ffb6
commit 9b197abcfa
815 changed files with 22960 additions and 8982 deletions

View File

@@ -33,32 +33,32 @@ export function GuideCard({
}) {
return (
<Link
className="col overflow-hidden rounded-lg border bg-background-light transition-all duration-300 hover:scale-105 hover:shadow-background-dark hover:shadow-lg"
href={url}
key={url}
className="border rounded-lg overflow-hidden bg-background-light col hover:scale-105 transition-all duration-300 hover:shadow-lg hover:shadow-background-dark"
>
<Image
src={cover}
alt={title}
width={323}
height={181}
className="w-full"
height={181}
src={cover}
width={323}
/>
<span className="p-4 col flex-1">
<div className="flex items-center gap-2 mb-2">
<span className="col flex-1 p-4">
<div className="mb-2 flex items-center gap-2">
<span
className={`font-mono text-xs px-2 py-1 rounded ${difficultyColors[difficulty]}`}
className={`rounded px-2 py-1 font-mono text-xs ${difficultyColors[difficulty]}`}
>
{difficultyLabels[difficulty]}
</span>
<span className="text-xs text-muted-foreground">
<span className="text-muted-foreground text-xs">
{timeToComplete} min
</span>
</div>
<span className="flex-1 mb-6">
<h2 className="text-xl font-semibold">{title}</h2>
<span className="mb-6 flex-1">
<h2 className="font-semibold text-xl">{title}</h2>
</span>
<p className="text-sm text-muted-foreground">
<p className="text-muted-foreground text-sm">
{[team, date.toLocaleDateString()].filter(Boolean).join(' · ')}
</p>
</span>