feat(ai-character): 관리자 라우트 지연 로딩 적용

This commit is contained in:
Yu Sung
2026-08-06 21:38:12 +09:00
parent 68959cb33b
commit 2a04955bd7
10 changed files with 849 additions and 48 deletions

View File

@@ -25,10 +25,10 @@ export function CharacterListItem({ character }: { readonly character: Character
<img alt="" className="size-12 shrink-0 rounded-md object-cover" height="48" loading="lazy" src={character.imageUrl} width="48" />
)}
<span className="min-w-0 flex-1">
<span className="block font-semibold">{character.name}</span>
<span className="mt-1 line-clamp-2 block text-sm text-muted-foreground">{description}</span>
<span className="mt-2 block text-xs font-semibold text-info">ID {character.id} · {character.region}</span>
<span className="mt-1 block text-xs text-muted-foreground">{character.tags.join(", ")}</span>
<span className="block break-keep break-words font-semibold">{character.name}</span>
<span className="mt-1 line-clamp-2 block break-keep break-words text-sm text-muted-foreground">{description}</span>
<span className="mt-2 block break-keep break-words text-xs font-semibold text-info">ID {character.id} · {character.region}</span>
<span className="mt-1 block break-keep break-words text-xs text-muted-foreground">{character.tags.join(", ")}</span>
</span>
</span>
</a>