RemotionUI
Scenes

Feature List

Staggered bullet list scene with title.

Sceneblocks

Install
npx remotion-ui@latest add feature-list

Composes stagger-children, slide-left, and fade-in for a responsive feature list.

Live preview
Installs `stagger-children`, `slide-left`, and `fade-in`.

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add feature-list

Import after install

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

<FeatureList
  title="Why RemotionUI"
  items={["Own your components", "Live previews", "CLI workflow"]}
/>

API Reference

PropTypeDescription
items*string[]Bullet list items.
titlestringSection heading.
accentColorstringBullet and accent color.

Related