RemotionUI
Scenes

Title Card

Centered title card scene.

Sceneblocks

Install
npx remotion-ui@latest add title-card

Centered title card scene.

Live preview

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add title-card

Import after install

@/remotion/scenes/title-card
  • Use when: full-frame scenes, overlays, cards, and reusable video sections.
  • Customize: title, subtitle, accentColor, backgroundColor, 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 { TitleCard } from "@/remotion/scenes/title-card";

<TitleCard title="Launch Week" subtitle="Day 1" />

API Reference

PropTypeDescription
title*stringMain heading.
subtitlestringSupporting line.
accentColorstringAccent elements.
backgroundColorstringScene background.

Related