<NextThirtyDays>
Ordered list of dated commitments for the coming month.
When to use: Delivery cadence or milestone preview on project update decks.
Preview
| Prop | Type | Notes |
|---|---|---|
| title | string | Optional. Default: Next 30 days. Slide heading. |
| items | { date: string; text: string }[] | Required. `date` is a short label (e.g. "12 Jun" or "Week 2"); `text` is the commitment. |
Examples
<NextThirtyDays
items={[
{ date: "Week 1", text: "Freeze scope for pilot A." },
{ date: "Week 2", text: "Integration test with sandbox ERP." },
{ date: "Week 4", text: "Go / no-go for production cutover." },
]}
/>