We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a57068 commit ea2b3f5Copy full SHA for ea2b3f5
1 file changed
src/App.tsx
@@ -2086,10 +2086,13 @@ function App() {
2086
</CardHeader>
2087
<CardContent>
2088
<p className="text-sm text-muted-foreground leading-relaxed mb-4">{model.description}</p>
2089
- <div className="flex flex-wrap gap-2">
2090
- {model.highlights.map((h, j) => (
2091
- <Badge key={j} variant="secondary" className="text-xs">{h}</Badge>
2092
- ))}
+ <div className="text-sm text-foreground/85">
+ <p className="font-medium mb-2">Kernpunkte</p>
+ <ul className="space-y-1 text-muted-foreground leading-relaxed">
+ {model.highlights.map((h, j) => (
2093
+ <li key={j}>• {h}</li>
2094
+ ))}
2095
+ </ul>
2096
</div>
2097
</CardContent>
2098
</Card>
0 commit comments