{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "short-slide-down",
  "title": "Short Slide Down",
  "description": "Each new word drops in from above into its own line and pushes the stack downward until a centered three-line composition locks in place.",
  "dependencies": ["remotion"],
  "files": [
    {
      "path": "registry/remocn/short-slide-down/index.tsx",
      "content": "\"use client\";\n\nimport { useMemo } from \"react\";\nimport { Easing, interpolate, useCurrentFrame } from \"remotion\";\n\nexport interface ShortSlideDownProps {\n  text: string;\n  entryOffset?: number;\n  fontSize?: number;\n  color?: string;\n  fontWeight?: number;\n  speed?: number;\n  className?: string;\n}\n\nconst FONT_FAMILY =\n  \"var(--font-geist-sans), -apple-system, BlinkMacSystemFont, sans-serif\";\n\nexport function ShortSlideDown({\n  text,\n  entryOffset = 28,\n  fontSize = 72,\n  color = \"#171717\",\n  fontWeight = 600,\n  speed = 1,\n  className,\n}: ShortSlideDownProps) {\n  const frame = useCurrentFrame() * speed;\n\n  const words = useMemo(() => text.split(\" \"), [text]);\n  const n = words.length;\n\n  const lineGap = 12;\n  const rowHeight = fontSize;\n  const firstDur = 11;\n  const pushDur = 15;\n  const travelDur = 8;\n  const entryScale = 0.992;\n  const entryBlur = 2.4;\n  const reflowBlur = 0.7;\n  const firstWordY = -14;\n  const easing = Easing.bezier(0.2, 0.8, 0.2, 1);\n\n  const positionsAt = useMemo(() => {\n    const out: number[][] = [];\n    for (let k = 1; k <= n; k++) {\n      const total = rowHeight * k + lineGap * (k - 1);\n      const start = -total / 2 + rowHeight / 2;\n      const ys: number[] = [];\n      for (let j = 0; j < k; j++) ys.push(start + j * (rowHeight + lineGap));\n      out.push(ys);\n    }\n    return out;\n  }, [n, rowHeight]);\n\n  return (\n    <div\n      style={{\n        position: \"absolute\",\n        inset: 0,\n        display: \"flex\",\n        alignItems: \"center\",\n        justifyContent: \"center\",\n        background: \"transparent\",\n      }}\n    >\n      <div\n        className={className}\n        style={{\n          position: \"relative\",\n          fontSize,\n          fontWeight,\n          color,\n          letterSpacing: \"-0.03em\",\n          fontFamily: FONT_FAMILY,\n          whiteSpace: \"nowrap\",\n        }}\n      >\n        {words.map((word, j) => {\n          const entryStart = j === 0 ? 0 : firstDur + (j - 1) * pushDur;\n          const entryEnd = entryStart + (j === 0 ? firstDur : pushDur);\n          const targetY = positionsAt[j][j];\n          const yFrom = j === 0 ? firstWordY : targetY - entryOffset;\n\n          let y = targetY;\n          let opacity = 1;\n          let scale = 1;\n          let blur = 0;\n\n          if (frame < entryStart) {\n            opacity = 0;\n            y = yFrom;\n            scale = entryScale;\n            blur = entryBlur;\n          } else if (frame <= entryEnd) {\n            const range: [number, number] = [entryStart, entryEnd];\n            const travelRange: [number, number] = [\n              entryStart,\n              Math.min(entryStart + travelDur, entryEnd),\n            ];\n            const opts = {\n              extrapolateLeft: \"clamp\" as const,\n              extrapolateRight: \"clamp\" as const,\n              easing,\n            };\n            y = interpolate(frame, travelRange, [yFrom, targetY], opts);\n            opacity = interpolate(frame, range, [0, 1], opts);\n            scale = interpolate(frame, range, [entryScale, 1], opts);\n            blur = interpolate(frame, range, [entryBlur, 0], opts);\n          } else {\n            for (let w = j + 1; w < n; w++) {\n              const pushStart = firstDur + (w - 1) * pushDur;\n              const pushEnd = pushStart + pushDur;\n              const fromY = positionsAt[w - 1][j];\n              const toY = positionsAt[w][j];\n              if (frame >= pushEnd) {\n                y = toY;\n              } else if (frame >= pushStart) {\n                y = interpolate(\n                  frame,\n                  [pushStart, Math.min(pushStart + travelDur, pushEnd)],\n                  [fromY, toY],\n                  {\n                    extrapolateLeft: \"clamp\",\n                    extrapolateRight: \"clamp\",\n                    easing,\n                  },\n                );\n                blur = interpolate(\n                  frame,\n                  [pushStart, (pushStart + pushEnd) / 2, pushEnd],\n                  [0, reflowBlur, 0],\n                  { extrapolateLeft: \"clamp\", extrapolateRight: \"clamp\" },\n                );\n                break;\n              } else {\n                y = fromY;\n                break;\n              }\n            }\n          }\n\n          return (\n            <span\n              key={j}\n              style={{\n                position: \"absolute\",\n                left: \"50%\",\n                top: \"50%\",\n                whiteSpace: \"nowrap\",\n                backfaceVisibility: \"hidden\",\n                transform: `translate(-50%, -50%) translate3d(0px, ${y}px, 0) scale(${scale})`,\n                filter: `blur(${blur}px)`,\n                opacity,\n              }}\n            >\n              {word}\n            </span>\n          );\n        })}\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/remocn/short-slide-down.tsx"
    }
  ],
  "type": "registry:component"
}
