import type React from "react"; import { AbsoluteFill, useCurrentFrame } from "remotion"; import { ClipReveal } from "@/components/ClipReveal"; import { COLOR } from "@/lib/colors"; import { TEXT } from "@/lib/fonts"; export const HookScene: React.FC = () => { const frame = useCurrentFrame(); const glowOpacity = Math.sin(frame * 0.08) * 0.03 + 0.08; return (
Your images.
Stay yours.
); };