fix: update text color in QuickAccessCards for improved readability

- Changed the text color of card descriptions in quick-access-cards.tsx from gray to a muted foreground color, enhancing visual clarity.
This commit is contained in:
Daniel Luiz Alves
2025-07-03 01:50:54 -03:00
parent 5e367b67fa
commit cc97a8e60d

View File

@@ -49,7 +49,7 @@ export function QuickAccessCards() {
</div> </div>
<div> <div>
<h3 className="text-lg font-semibold">{card.title}</h3> <h3 className="text-lg font-semibold">{card.title}</h3>
<p className="text-sm text-gray-500">{card.description}</p> <p className="text-sm text-muted-foreground">{card.description}</p>
</div> </div>
</div> </div>
</CardContent> </CardContent>