fix: feature list — title and description on separate lines

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-24 10:30:16 +01:00
parent 40b3a11ac0
commit 4d21c64998

View File

@@ -75,12 +75,13 @@ export function HomePage() {
{FEATURES.map((f) => (
<li key={f.title} className="flex items-start gap-2.5">
<Check className="w-4 h-4 text-teal-500 dark:text-teal-400 flex-shrink-0 mt-0.5" />
<span className="text-sm text-gray-600 dark:text-slate-400">
<span className="font-medium text-gray-800 dark:text-slate-200">
<span className="text-sm">
<span className="block font-medium text-gray-800 dark:text-slate-200">
{f.title}
</span>
{' — '}
{f.desc}
<span className="block text-gray-500 dark:text-slate-400">
{f.desc}
</span>
</span>
</li>
))}