BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/remocn/claude-code

Claude Code

remocn/claude-code
FreeComponent

Animated Claude Code CLI welcome screen — terminal window with a dashed welcome box, recent activity and what's new panels, and a prompt line that types a command with a block cursor. Dark/light themes.

Install it

npx shadcn@latest add https://www.remocn.dev/r/claude-code.json

Source

registry/remocn/claude-code/index.tsxwww.remocn.dev/r/claude-code.json · first 6 KB
1"use client";
2
3import { loadFont } from "@remotion/google-fonts/JetBrainsMono";
4import {
5 AbsoluteFill,
6 interpolate,
7 spring,
8 useCurrentFrame,
9 useVideoConfig,
10} from "remotion";
11import { Caret } from "@/components/remocn/caret";
12import { useTypewriter } from "@/lib/remocn-ui";
13
14const { fontFamily: MONO_FAMILY } = loadFont();
15
16export interface ClaudeCodeProps {
17 title?: string;
18 userName?: string;
19 model?: string;
20 cwd?: string;
21 placeholder?: string;
22 prompt?: string;
23 accentColor?: string;
24 speed?: number;
25}
26
27interface Theme {
28 page: string;
29 windowBar: string;
30 windowBody: string;
31 fg: string;
32 fgMuted: string;
33 fgDim: string;
34 boxBorder: string;
35}
36
37export const THEMES: Record<"light" | "dark", Theme> = {
38 light: {
39 page: "#E8E5DD",
40 windowBar: "#D8D3CA",
41 windowBody: "#FBFAF7",
42 fg: "#1F1E1D",
43 fgMuted: "#73726C",
44 fgDim: "#A3A097",
45 boxBorder: "#D97757",
46 },
47 dark: {
48 page: "#2B2A28",
49 windowBar: "#3A3633",
50 windowBody: "#1B1A18",
51 fg: "#E8E5DD",
52 fgMuted: "#8A857C",
53 fgDim: "#6B6660",
54 boxBorder: "#D97757",
55 },
56};
57
58export const TYPING_START_FRAME = 48;
59
60export const TYPING_CPS = 18;
61
62export const WHATS_NEW: string[] = [
63 "/agents to create subagents",
64 "/security-review for review agent",
65 "ctrl+b to background bashes",
66];
67
68function introBounceIn(
69 frame: number,
70 fps: number,
71): { translateY: number; scale: number } {
72 const s = spring({
73 fps,
74 frame,
75 config: { damping: 14, stiffness: 110, mass: 0.7 },
76 });
77 const translateY = interpolate(s, [0, 1], [28, 0]);
78 const scale = interpolate(s, [0, 1], [0.97, 1]);
79 return { translateY, scale };
80}
81
82function fadeUpAt(
83 frame: number,
84 range: [number, number],
85): { opacity: number; translateY: number } {
86 const opts = {
87 extrapolateLeft: "clamp" as const,
88 extrapolateRight: "clamp" as const,
89 };
90 return {
91 opacity: interpolate(frame, range, [0, 1], opts),
92 translateY: interpolate(frame, range, [12, 0], opts),
93 };
94}
95
96function Mascot({ accent, size = 96 }: { accent: string; size?: number }) {
97 return (
98 <svg
99 height={size}
100 viewBox="0 0 24 24"
101 width={size}
102 xmlns="http://www.w3.org/2000/svg"
103 >
104 <title>Claude Code</title>
105 <path
106 clipRule="evenodd"
107 d="M20.998 10.949H24v3.102h-3v3.028h-1.487V20H18v-2.921h-1.487V20H15v-2.921H9V20H7.488v-2.921H6V20H4.487v-2.921H3V14.05H0V10.95h3V5h17.998v5.949zM6 10.949h1.488V8.102H6v2.847zm10.51 0H18V8.102h-1.49v2.847z"
108// … truncated

What it pulls in

npm packages

  • remotion
  • @remotion/google-fonts

Other registry items

  • @remocn/caret
  • @remocn/remocn-ui

Files it writes

  • registry/remocn/claude-code/index.tsx

Facts

Registry
remocn
Type
registry:component
Access
Free
Files written
1
Licence
the repository states none
First indexed
2026-08-01
Last confirmed
yesterday

Go to the source

www.remocn.dev Remocn/remocn on GitHub Raw registry item This item as JSON

More from remocn

All 277 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
UI AccordionaccordionremocnComponentsFree1 dep · 2 files
UI AI Prompt Flowai-prompt-flowremocnComponentsFree1 dep
UI Alert Dialogalert-dialogremocnComponentsFree1 dep · 2 files
Animated Bar Chartanimated-bar-chartremocnComponentsFree1 dep
Animated Line Chartanimated-line-chartremocnComponentsFree1 dep
ASCII Dissolveascii-dissolveremocnComponentsFree2 deps
ASCII Renderascii-renderremocnComponentsFree1 dep
BackdropbackdropremocnComponentsFree1 dep
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex