Browse Source

feat: add 3D capability badges to ModelSearchDialog

Add text-to-3d and image-to-3d capability badge styling.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
handoff-20260429-1057
shrimbly 5 months ago
parent
commit
30558435c5
  1. 8
      src/components/modals/ModelSearchDialog.tsx

8
src/components/modals/ModelSearchDialog.tsx

@ -486,6 +486,14 @@ export function ModelSearchDialog({
color = "bg-pink-500/20 text-pink-300";
label = "img→vid";
break;
case "text-to-3d":
color = "bg-orange-500/20 text-orange-300";
label = "txt→3d";
break;
case "image-to-3d":
color = "bg-amber-500/20 text-amber-300";
label = "img→3d";
break;
}
if (label) {

Loading…
Cancel
Save