<Slide>
PresentationBase slide canvas with padding inside the deck; optional printed-page chrome band.
When to use: Wrap slide body when you do not need a named layout template. Add the chrome props for a masthead/footline treatment (section name top-left, slide tag top-right, deck name + page bottom).
Preview
| Prop | Type | Notes |
|---|---|---|
| children | ReactNode | Required. Slide content. |
| className | string | Optional. Extra Tailwind classes on the inner frame. |
| eyebrow | string | Optional. Chrome label top-left (e.g. section name). |
| eyebrowRight | string | Optional. Chrome slot top-right, opposite eyebrow (e.g. slide counter). |
| footerLeft | string | Optional. Chrome line bottom-left (e.g. deck name or date). |
| footerRight | string | Optional. Chrome line bottom-right, opposite footerLeft (e.g. page label). |
Examples
<Slide>
<TitleSlide label="Part 1" title="Agenda" />
</Slide><Slide eyebrow="Current state" eyebrowRight="03 / 12" footerLeft="Acme · Automation discovery" footerRight="Confidential">
<BigStat label="Manual hours / week" value="142" />
</Slide>

