From 41cc7a5cebfc1a087716950cb5594a309566bb20 Mon Sep 17 00:00:00 2001 From: Satyam Rastogi Date: Sat, 30 May 2026 03:02:28 +0530 Subject: [PATCH] =?UTF-8?q?feat(film):=20pillar=201=20=E2=80=94=20storms?= =?UTF-8?q?=20into=20pipeline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/sequences/Pillar1Storms.tsx | 37 +++++++++++++++++-- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/marketing/product-film/src/sequences/Pillar1Storms.tsx b/marketing/product-film/src/sequences/Pillar1Storms.tsx index 1f6a65a..7b523fe 100644 --- a/marketing/product-film/src/sequences/Pillar1Storms.tsx +++ b/marketing/product-film/src/sequences/Pillar1Storms.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 Pillar1Storms: React.FC = () => ( - -); + +const D = DURATIONS.pillar1; +const TITLE = 75; // 2.5s + +export const Pillar1Storms: React.FC = () => { + const afterTitle = D - TITLE; + const half = Math.floor(afterTitle / 2); + return ( + + + + + + {/* Beat A: Storm Intel — zones light up; cursor assigns a zone */} + + + + + + + {/* Beat B: Lead Verification — verify a lead */} + + + + + + + ); +};