RemotionUI
Scenes

Lower Third

Name and subtitle overlay at the bottom of the frame.

Sceneblocks

Install
npx remotion-ui@latest add lower-third

Installs fade-in and slide-left as registry dependencies.

Live preview
Installs `fade-in` and `slide-left` as dependencies.

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add lower-third

Import after install

@/remotion/scenes/lower-third
  • 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 { LowerThird } from "@/remotion/scenes/lower-third";

<LowerThird
  title="Jane Doe"
  subtitle="Product Designer"
  accentColor="#f97316"
/>

API Reference

PropTypeDescription
title*stringPrimary line.
subtitlestringSecondary line.
accentColorstringAccent bar color.
backgroundColorstringPanel background.

Related