Components
“The best way to predict the future is to create it.”
— Peter Drucker
Installation
$ pnpm dlx shadcn@latest add @slidecn/quote-slide
Usage
import QuoteSlide from "@/components/slides/quote-slide";
function MyPresentation() {
return (
<Deck>
<QuoteSlide
quote="Innovation distinguishes between a leader and a follower."
attribution="Steve Jobs"
source="Apple Keynote, 2007"
variant="accent"
/>
</Deck>
);
}API Reference
QuoteSlide
| Prop | Type | Default | Description |
|---|---|---|---|
quote | string | required | The quote text |
attribution | string | - | Quote author |
source | string | - | Source context |
variant | "minimal" | "large" | "accent" | "minimal" | Visual style |
notes | string | - | Speaker notes |