fix(hackathon): truncate long bio text on dashboard

- Add line-clamp-3 to limit bio to 3 lines
- Add wrap-break-word to handle long strings without spaces

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Maulana Sodiqin
2025-11-26 16:53:46 +07:00
co-authored by Claude
parent 63643cc286
commit 66b8b064ba
+1 -1
View File
@@ -212,7 +212,7 @@ const DashboardPage: FC = (): ReactElement => {
<h3 className="text-sm font-semibold text-gray-700 dark:text-neutral-300 uppercase tracking-wide mb-2">
About
</h3>
<p className="text-gray-800 dark:text-neutral-200 leading-relaxed">
<p className="text-gray-800 dark:text-neutral-200 leading-relaxed line-clamp-3 wrap-break-word">
{user.bio}
</p>
</div>