import { Composition } from "remotion";
import { TeaserComposition } from "./Teaser";

const FPS = 30;
// 82s content + 8s CTA = 90s total
const TOTAL_DURATION = 90 * FPS;

export const RemotionRoot: React.FC = () => {
  return (
    <>
      <Composition
        id="TeaserComposition"
        component={TeaserComposition}
        durationInFrames={TOTAL_DURATION}
        fps={FPS}
        width={1920}
        height={1080}
      />
    </>
  );
};
