Seed: product-management template (23 files)

This commit is contained in:
2026-07-23 23:01:52 +00:00
parent 4c2b3643f4
commit 3f9e572bb5
+3 -3
View File
@@ -150,13 +150,13 @@ export default function ChangelogPage() {
<div key={release.id} className="relative flex gap-6">
{/* Timeline Dot */}
<div className="hidden md:flex items-start pt-1">
<div className={`h-12 w-12 rounded-full flex items-center justify-center shrink-0 z-10 \${index === 0 ? "bg-blue-600 text-white" : "bg-white border-2 border-slate-200 text-slate-400"}`}>
<div className={`h-12 w-12 rounded-full flex items-center justify-center shrink-0 z-10 ${index === 0 ? "bg-blue-600 text-white" : "bg-white border-2 border-slate-200 text-slate-400"}`}>
<Rocket className="h-5 w-5" />
</div>
</div>
{/* Release Card */}
<Card className={`border-0 shadow-sm flex-1 \${index === 0 ? "ring-2 ring-blue-100" : ""}`}>
<Card className={`border-0 shadow-sm flex-1 ${index === 0 ? "ring-2 ring-blue-100" : ""}`}>
<CardContent className="p-6">
<div className="flex flex-wrap items-center gap-3 mb-3">
<Badge className="bg-blue-100 text-blue-700 font-mono text-xs border-0">{release.version}</Badge>
@@ -170,7 +170,7 @@ export default function ChangelogPage() {
const FeatureIcon = typeIcons[feature.type] || CheckCircle2;
return (
<div key={fi} className="flex items-start gap-3 py-1.5">
<Badge className={`\${feature.typeColor} text-[10px] font-semibold border-0 px-2 py-0.5 shrink-0 flex items-center gap-1`}>
<Badge className={`${feature.typeColor} text-[10px] font-semibold border-0 px-2 py-0.5 shrink-0 flex items-center gap-1`}>
<FeatureIcon className="h-3 w-3" />
{feature.type}
</Badge>