feat: add multiple way to show collections and links

This commit is contained in:
Sonny
2025-08-21 02:27:51 +02:00
parent 18fe979069
commit 4ef2b639b6
41 changed files with 785 additions and 164 deletions

View File

@@ -28,7 +28,13 @@ export function LinkItem({ link, hideMenu: hideMenu = false }: LinkItemProps) {
{!hideMenu && <LinkControls link={link} />}
</Group>
{description && (
<Text c="dimmed" size="sm" mt="xs" lineClamp={3}>
<Text
c="dimmed"
size="sm"
mt="xs"
lineClamp={3}
style={{ wordBreak: 'break-word', whiteSpace: 'pre-line' }}
>
{description}
</Text>
)}