RemotionUI

End Card

The outro, built in the order a viewer acts on it.

SceneScenes

end-card30fps · 960×540
Install
$ npx remotion-ui@latest add end-card

The title rises out of its mask, the button assembles and its label rises out of the button, the address types underneath a caret that clears when it completes, the channels list, and a single ring pulses off the button.

cta, url, handles, logoSrc, eyebrow and subtitle are each optional — omit them and the card ends on what is left.

Agent notes

Install first, then import the copied source component locally. AI guide →

Import
@/remotion/scenes/end-card
  • Use when: full-frame scenes, overlays, cards, and reusable video sections.
  • Customize: title, subtitle, eyebrow, cta, 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

Example
import { EndCard } from "@/remotion/scenes/end-card"; <EndCard title="Thanks for watching" cta="Subscribe" url="youtube.com" />

API Reference

PropTypeDescription
title*stringClosing headline.
subtitlestringLine under the title.
eyebrowstringChip above the title.
ctastringButton label. Omit to end on the title alone.
urlstringAddress typed under the button.
handlesstring[]Handles or channels listed along the foot.
logoSrcstringBrand mark image (staticFile or URL).
accentColorstringButton, pulse, and eyebrow colour.
theme"dark" | "light"Surface palette.
speednumberAnimation speed multiplier.

Related