BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/navdeep-singh/release-workflow-illustration

Release Workflow Illustration

navdeep-singh/release-workflow-illustration
FreeComponent

An interactive release tracker with configurable workflow data and autoplay.

Install it

npx shadcn@latest add https://ui.navdeepsingh.dev/r/release-workflow-illustration.json

Source

components/illustrations/ReleaseWorkflowIllustration.tsxui.navdeepsingh.dev/r/release-workflow-illustration.json · first 6 KB
1'use client'
2
3import { useEffect, useId, useState } from 'react'
4import { AnimatePresence, motion, useReducedMotion } from 'motion/react'
5import { Check, ChevronDown, GitCommit, Rocket } from 'lucide-react'
6
7import { cn } from '@/lib/utils'
8
9export type ContentSectionThreeRelease = {
10 name: string
11 version: string
12 status: string
13 time: string
14 environment?: string
15 commit?: string
16 note?: string
17}
18
19export type ContentSectionThreeWorkflow = {
20 label?: string
21 releases?: readonly ContentSectionThreeRelease[]
22}
23
24export type ReleaseWorkflowIllustrationProps = {
25 workflow?: ContentSectionThreeWorkflow
26 autoPlay?: boolean
27 interval?: number
28}
29
30export const defaultReleaseWorkflow: ContentSectionThreeWorkflow = {
31 label: 'Releases',
32 releases: [
33 {
34 name: 'Platform',
35 version: '2.4.0',
36 status: 'Released',
37 time: '2h ago',
38 environment: 'Production',
39 commit: '7f3c2a1',
40 },
41 {
42 name: 'Dashboard',
43 version: '1.18.0',
44 status: 'Ready',
45 time: 'Today',
46 environment: 'Staging',
47 commit: '8b61d4e',
48 },
49 {
50 name: 'Mobile',
51 version: '1.9.0',
52 status: 'In review',
53 time: 'Yesterday',
54 environment: 'TestFlight',
55 commit: 'c129ef4',
56 },
57 ],
58}
59
60export function ReleaseWorkflowIllustration({
61 workflow = defaultReleaseWorkflow,
62 autoPlay = true,
63 interval = 4000,
64}: ReleaseWorkflowIllustrationProps) {
65 const instanceId = useId()
66 const shouldReduceMotion = useReducedMotion()
67
68 const releases = workflow.releases ?? defaultReleaseWorkflow.releases ?? []
69
70 const [selectedIndex, setSelectedIndex] = useState(0)
71 const [isPointerInside, setIsPointerInside] = useState(false)
72 const [hasFocusWithin, setHasFocusWithin] = useState(false)
73
74 const activeIndex = Math.min(selectedIndex, Math.max(releases.length - 1, 0))
75
76 const activeRelease = releases[activeIndex]
77 const isPaused = isPointerInside || hasFocusWithin
78
79 useEffect(() => {
80 if (!autoPlay || shouldReduceMotion || isPaused || releases.length <= 1) {
81 return
82 }
83
84 const timeout = window.setTimeout(() => {
85 setSelectedIndex((currentIndex) => {
86 return (currentIndex + 1) % releases.length
87 })
88 }, interval)
89
90 return () => window.clearTimeout(timeout)
91 }, [activeIndex, autoPlay, interval, isPaused, releases.length, shouldReduceMotion])
92
93 return (
94 <div
95 id="release-workflow"
96 aria-label="Interactive release tracking preview"
97// … truncated

What it pulls in

npm packages

  • lucide-react
  • motion

Files it writes

  • components/illustrations/ReleaseWorkflowIllustration.tsx

Facts

Registry
navdeep-singh
Type
registry:component
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-08
Last confirmed
today

Go to the source

ui.navdeepsingh.dev Navdeepannu/Portfolio on GitHub Raw registry item This item as JSON

More from navdeep-singh

All 64 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Animated Groupanimated-groupnavdeep-singhComponentsFree1 dep
Animated Numbersanimated-numbersnavdeep-singhComponentsFree1 dep
Animated Tabsanimated-tabsnavdeep-singhComponentsFree2 deps
Approval Panel Illustrationapproval-panelnavdeep-singhComponentsFree2 deps · 2 files
Brand Logobrand-logonavdeep-singhComponentsFree1 dep
Contribution Graphcontribution-graphnavdeep-singhComponentsFreeno deps
Designed for Focus Illustrationdesigned-for-focus-illustrationnavdeep-singhComponentsFree1 dep
Expandable Cardexpandable-cardnavdeep-singhComponentsFree4 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

ToolDrift

What the AI coding tools changed last night

tooldrift.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 ToolDrift

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 ToolDrift

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 ToolDrift

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