BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/@cellforge/cell-orbit-5

Nova Wheel

cellforge/cell-orbit-5
FreeComponent

Four rotating pinwheel blades spin through the circular matrix with a glowing center and soft trailing halo.

Install it

npx shadcn@latest add https://cellforge.dev/r/cell-orbit-5.json

Source

components/ui/cell-orbit-5.tsxcellforge.dev/r/cell-orbit-5.json
1"use client";
2
3import { useMemo } from "react";
4
5import { CellForgeBase } from "@/components/ui/cellforge-core";
6import { useCellForgePhases } from "@/components/ui/cellforge-hooks";
7import { isWithinCircularMask } from "@/components/ui/cellforge-core";
8import { useCyclePhase } from "@/components/ui/cellforge-hooks";
9import { usePrefersReducedMotion } from "@/components/ui/cellforge-hooks";
10import type { DotAnimationResolver, CellForgeCommonProps } from "@/components/ui/cellforge-core";
11
12export type CellOrbit5Props = CellForgeCommonProps;
13
14const BASE_OPACITY = 0.08;
15const BLADE_OPACITY = 0.94;
16const HALO_OPACITY = 0.34;
17
18export function CellOrbit5({
19 speed = 1.7,
20 animated = true,
21 hoverAnimated = false,
22 ...rest
23}: CellOrbit5Props) {
24 const reducedMotion = usePrefersReducedMotion();
25 const { phase: matrixPhase, onMouseEnter, onMouseLeave } = useCellForgePhases({
26 animated: Boolean(animated && !reducedMotion),
27 hoverAnimated: Boolean(hoverAnimated && !reducedMotion),
28 speed
29 });
30 const phase = useCyclePhase({
31 active: !reducedMotion && matrixPhase !== "idle",
32 cycleMsBase: 1650,
33 speed
34 });
35
36 const resolver = useMemo<DotAnimationResolver>(() => {
37 return ({ row, col, phase: p }) => {
38 if (!isWithinCircularMask(row, col)) {
39 return { className: "dmx-inactive" };
40 }
41
42 const x = col - 2;
43 const y = row - 2;
44 const radius = Math.hypot(x, y);
45 const angle = Math.atan2(y, x);
46 const theta = (reducedMotion || p === "idle" ? 0 : phase) * Math.PI * 2;
47 const pinwheel = Math.cos(angle * 4 - theta * 2.2);
48 const radialGate = Math.sin(radius * 2.1 - theta * 1.25);
49
50 if (radius < 0.6) {
51 return { style: { opacity: 0.66 } };
52 }
53
54 if (pinwheel > 0.48 && radialGate > -0.25) {
55 return { style: { opacity: BLADE_OPACITY } };
56 }
57
58 if (pinwheel > 0.1) {
59 return { style: { opacity: HALO_OPACITY } };
60 }
61
62 return { style: { opacity: BASE_OPACITY } };
63 };
64 }, [reducedMotion, phase]);
65
66 return (
67 <CellForgeBase
68 {...rest}
69 size={rest.size ?? 36}
70 dotSize={rest.dotSize ?? 5}
71 speed={speed}
72 pattern="full"
73 animated={animated}
74 phase={matrixPhase}
75 onMouseEnter={onMouseEnter}
76 onMouseLeave={onMouseLeave}
77 reducedMotion={reducedMotion}
78 animationResolver={resolver}
79 />
80 );
81}

Facts

Registry
@cellforge
Type
registry:ui
Access
Free
Files written
0
Licence
MIT
In the index
at or before 2026-08-07
Last confirmed
today

Go to the source

cellforge.dev cellforge-dev/cellforge on GitHub Raw registry item This item as JSON

More from @cellforge

All 71 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
All CellForge Loadersall@cellforgeComponentsFreeno deps
Core Spokescell-angle-1@cellforgeComponentsFreeno deps
Column Rakecell-angle-10@cellforgeComponentsFreeno deps
Shelf Descentcell-angle-11@cellforgeComponentsFreeno deps
Skew Driftcell-angle-12@cellforgeComponentsFreeno deps
Serpent Zipcell-angle-13@cellforgeComponentsFreeno deps
Pillar Sweepcell-angle-14@cellforgeComponentsFreeno deps
Tripod Handoffcell-angle-15@cellforgeComponentsFreeno deps

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

KitGrade

SaaS starter kits, scored from measured facts

kitgrade.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex