From 242b97072f24b19f85d8b9aa8f66bff64d2a08a4 Mon Sep 17 00:00:00 2001 From: Satyam Rastogi Date: Sat, 30 May 2026 03:05:49 +0530 Subject: [PATCH] =?UTF-8?q?feat(film):=20pillar=202=20=E2=80=94=20right=20?= =?UTF-8?q?person,=20automatically?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/sequences/Pillar2Dispatch.tsx | 37 +++++++++++++++++-- 1 file changed, 34 insertions(+), 3 deletions(-) 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 */} + + + + + + + ); +};