RemotionUI
Scenes

Quote Card

Quote with animated word highlight and attribution.

Sceneblocks

Install
npx remotion-ui@latest add quote-card

Combines word-highlight and fade-in for testimonial-style scenes.

Live preview
Installs `word-highlight`.

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add quote-card

Import after install

@/remotion/scenes/quote-card
  • Use when: full-frame scenes, overlays, cards, and reusable video sections.
  • Customize: quote, highlightWord, author, plus copied source for timing, layout, colors, and typography.
  • Rule: do not import this component from the remotion-ui npm package; it is copied into your project.

Usage

import { QuoteCard } from "@/remotion/scenes/quote-card";

<QuoteCard
  quote="The best way to ship motion graphics"
  highlightWord="motion"
  author="— Team"
/>

API Reference

PropTypeDescription
quote*stringQuote body.
highlightWord*stringWord to highlight.
author*stringAttribution line.

Related