import React from "react" import { AbsoluteFill, Easing, Img, interpolate, staticFile, useCurrentFrame } from "remotion" const c = { white: "#ffffff", dim: "rgba(255,255,255,0.72)", faint: "rgba(255,255,255,0.55)", } const MONO = '"IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace' // verified: NZ OpenCode Go, week of Jun 22-28, 2026 (2026-W26) const TOKENS = 40_915_594_381 // 40.9B const SHEEP = 23_600_000 // 23.6M const PER_SHEEP = Math.round(TOKENS / SHEEP) // 1,734 const nf = new Intl.NumberFormat("en-US") // the correct opencode "DATA" wordmark (white, over photo) function DataWordmark({ height = 30 }: { height?: number }) { return ( ) } export function NZSheep() { const frame = useCurrentFrame() const count = Math.round( PER_SHEEP * interpolate(frame, [18, 90], [0, 1], { extrapolateLeft: "clamp", extrapolateRight: "clamp", easing: Easing.out(Easing.cubic), }), ) // slow Ken Burns push-in (scale up only — never reveals an edge) const zoom = interpolate(frame, [0, 150], [1.06, 1.12], { extrapolateRight: "clamp", easing: Easing.inOut(Easing.quad), }) return ( {/* the sheep, staring */} {/* legibility scrims */}
{/* content */}
{/* header */}
JUN 22–28, 2026
{/* bottom block */}
OPENCODE GO · NEW ZEALAND
{nf.format(count)}
tokens per sheep
40.9B tokens ÷ 23.6M sheep · last week
opencode.ai/data
) }