Thin wrapper page component that composes `DevSectionPage` chrome with `DeliveryLists` to render the full bug-fixes & enhancements delivery view, exposing only the API endpoint configuration and layout props to host applications.
## Key Components
| Export | Type | Description |
|---|---|---|
| `DeliveryPage` | `React.FC` | Main page component wrapping `DevSectionPage` + `DeliveryLists` |
| `DeliveryPageProps` | `interface` | Configuration props for endpoints, layout, and content slots |
## Props
| Prop | Type | Default | Description |
|---|---|---|---|
| `completedEndpoint` | `string` | `/api/delivery/completed` | GET endpoint for "Recently Completed" bucket |
| `inProgressEndpoint` | `string` | `/api/delivery/in-progress` | GET endpoint for "Active Tasks" bucket |
| `backButton` | `{ label?, href? } \| false` | `{ href: '/' }` | Back-button config; pass `false` to hide |
| `title` | `string` | — | Override page title |
| `subtitle` | `string` | — | Override page subtitle |
| `belowContent` | `ReactNode` | — | Optional slot rendered below the lists, inside page chrome |
| `shell` | `boolean` | `true` | Set `false` when host layout already provides the page container |
## Usage Example
```typescript
import { DeliveryPage } from './delivery-page'
// Minimal usage — defaults apply
export default function Page() {
return
}
// Custom endpoints + embedded layout (no standalone shell)
export default function EmbeddedDelivery() {
return (
}
/>
)
}
```
## Source
[`delivery-page.tsx`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/delivery-page.tsx)