File size: 554 Bytes
1187856 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | interface OpsCheck {
label: string;
}
export function OpsStack({
sectionNumber,
title,
description,
checks,
}: {
sectionNumber: string;
title: string;
description: string;
checks: OpsCheck[];
}) {
return (
<section id="ops-stack" className="section ops-stack">
<div className="section-head">
<span>{sectionNumber}</span>
<h2>{title}</h2>
</div>
<p>{description}</p>
<ul>
{checks.map((c) => (
<li key={c.label}>{c.label}</li>
))}
</ul>
</section>
);
}
|