intro
remotionui/introFreeBlock
5-second branded intro composition
Live preview
live · rendered by the registry
Rendered by remotionui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://remotionui.com/r/intro.jsonSource
1import { AbsoluteFill, Sequence, useVideoConfig } from "remotion";2import { FadeOut } from "@/remotion/primitives/fade-out";3import { DELAY } from "@/remotion/lib/motion-tokens";4import { TitleCard } from "@/remotion/scenes/title-card";56const COLORS = {7 bg: "#080810",8 accent: "#e8b86d",9 subtitle: "#71717a",10} as const;1112export type IntroProps = {13 title?: string;14 subtitle?: string;15 backgroundColor?: string;16 accentColor?: string;17};1819export const Intro: React.FC<IntroProps> = ({20 title = "Chapter open",21 subtitle = "Name the topic before the walkthrough begins",22 backgroundColor = COLORS.bg,23 accentColor = COLORS.accent,24}) => {25 const { fps } = useVideoConfig();26 const premountFor = Math.round(fps * 0.5) + DELAY.short;2728 return (29 <AbsoluteFill30 style={{31 backgroundColor,32 backgroundImage:33 "radial-gradient(ellipse 70% 55% at 50% 40%, rgba(232,184,109,0.08), transparent)",34 }}35 >36 <Sequence durationInFrames={120} premountFor={premountFor}>37 <TitleCard38 title={title}39 subtitle={subtitle}40 backgroundColor={backgroundColor}41 accentColor={accentColor}42 />43 </Sequence>44 <Sequence from={120} durationInFrames={30} premountFor={premountFor}>45 <FadeOut durationInFrames={30}>46 <TitleCard47 title={title}48 subtitle={subtitle}49 backgroundColor={backgroundColor}50 accentColor={accentColor}51 />52 </FadeOut>53 </Sequence>54 </AbsoluteFill>55 );56};
More from remotionui
All 127 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| ai-composer-showcaseai-composer-showcase | remotionui | Blocks | Free | no deps | |
| ai-generation-canvasai-generation-canvas | remotionui | Blocks | Free | no deps | |
| animated-bar-chartanimated-bar-chart | remotionui | Blocks | Free | no deps | |
| audiogram-sceneaudiogram-scene | remotionui | Blocks | Free | no deps | |
| auto-fit-titleauto-fit-title | remotionui | Blocks | Free | no deps | |
| b-roll-stackb-roll-stack | remotionui | Blocks | Free | no deps | |
| bento-panbento-pan | remotionui | Blocks | Free | no deps | |
| browser-flowbrowser-flow | remotionui | Blocks | Free | no deps |
