Seed: product-management template (23 files)

This commit is contained in:
2026-07-23 23:01:43 +00:00
parent 86a215b48b
commit f6227ed6eb
+3 -3
View File
@@ -165,10 +165,10 @@ export default function FeaturesPage() {
</div> </div>
</td> </td>
<td className="px-4 py-4"> <td className="px-4 py-4">
<Badge className={`\${feature.statusColor} text-xs font-medium border-0`}>{feature.status}</Badge> <Badge className={`${feature.statusColor} text-xs font-medium border-0`}>{feature.status}</Badge>
</td> </td>
<td className="px-4 py-4"> <td className="px-4 py-4">
<Badge className={`\${feature.priorityColor} text-xs font-semibold border-0`}>{feature.priority}</Badge> <Badge className={`${feature.priorityColor} text-xs font-semibold border-0`}>{feature.priority}</Badge>
</td> </td>
<td className="px-4 py-4"> <td className="px-4 py-4">
<div className="flex items-center gap-1.5 text-sm text-slate-600"> <div className="flex items-center gap-1.5 text-sm text-slate-600">
@@ -179,7 +179,7 @@ export default function FeaturesPage() {
<td className="px-4 py-4"> <td className="px-4 py-4">
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<Avatar className="h-6 w-6"> <Avatar className="h-6 w-6">
<AvatarFallback className={`text-[10px] text-white \${feature.assigneeColor}`}>{feature.assigneeInitials}</AvatarFallback> <AvatarFallback className={`text-[10px] text-white ${feature.assigneeColor}`}>{feature.assigneeInitials}</AvatarFallback>
</Avatar> </Avatar>
<span className="text-sm text-slate-600 hidden xl:inline">{feature.assignee}</span> <span className="text-sm text-slate-600 hidden xl:inline">{feature.assignee}</span>
</div> </div>