RemotionUI
Scenes

B-Roll Stack

Layered media cards for creator explainers.

Sceneblocks

Install
npx remotion-ui@latest add b-roll-stack

Layer supporting visuals without hand-positioning every card.

Live preview

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add b-roll-stack

Import after install

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

<BRollStack items={[{ src: staticFile("shot.png"), title: "Proof" }]} />

API Reference

PropTypeDescription
items*{ src: string; title?: string }[]Media cards to layer.
titlestringScene headline.

Related