diff --git a/marketing/product-film/src/sequences/Pillar2Dispatch.tsx b/marketing/product-film/src/sequences/Pillar2Dispatch.tsx index 207a75e..c708d20 100644 --- a/marketing/product-film/src/sequences/Pillar2Dispatch.tsx +++ b/marketing/product-film/src/sequences/Pillar2Dispatch.tsx @@ -1,5 +1,36 @@ +import { AbsoluteFill, Sequence } from "remotion"; import { PillarTitle } from "../components/PillarTitle"; +import { ScreenFrame } from "../components/ScreenFrame"; +import { KenBurns } from "../components/KenBurns"; +import { Cursor } from "../components/Cursor"; +import { Caption } from "../components/Caption"; import { DURATIONS } from "../timing"; -export const Pillar2Dispatch: React.FC = () => ( - -); + +const D = DURATIONS.pillar2; +const TITLE = 75; + +export const Pillar2Dispatch: React.FC = () => { + const afterTitle = D - TITLE; + const half = Math.floor(afterTitle / 2); + return ( + + + + + + {/* Beat A: LynkDispatch AI recommendation; cursor assigns */} + + + + + + + {/* Beat B: Pipeline kanban — move a deal forward */} + + + + + + + ); +};