BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/einui/glass-timeline

Glass Timeline

einui/glass-timeline
FreeComponent

A timeline component with glass morphism styling, suitable for displaying events or processes in a chronological order.

Live preview

live · rendered by the registry
Rendered by einui on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://ui.eindev.ir/r/glass-timeline.json

Source

registry/innovative/glass-timeline.tsxui.eindev.ir/r/glass-timeline.json
1"use client"
2
3import * as React from "react"
4import { Check } from "lucide-react"
5import { cn } from "@/lib/utils"
6
7interface TimelineItem {
8 id: string
9 title: string
10 description?: string
11 date?: string
12 icon?: React.ReactNode
13 status?: "completed" | "current" | "upcoming"
14}
15
16interface GlassTimelineProps extends React.HTMLAttributes<HTMLDivElement> {
17 items: TimelineItem[]
18 orientation?: "vertical" | "horizontal"
19}
20
21const GlassTimeline = React.forwardRef<HTMLDivElement, GlassTimelineProps>(
22 ({ className, items, orientation = "vertical", ...props }, ref) => {
23 if (orientation === "horizontal") {
24 return (
25 <div ref={ref} className={cn("w-full overflow-x-auto", className)} {...props}>
26 <div className="flex items-start gap-4 min-w-max px-4">
27 {items.map((item, index) => (
28 <div key={item.id} className="flex flex-col items-center">
29 <div className="flex items-center">
30 {/* Node */}
31 <GlassTimelineNode status={item.status} icon={item.icon} />
32
33 {/* Connector */}
34 {index < items.length - 1 && (
35 <div
36 className={cn(
37 "w-24 h-0.5 mx-2",
38 item.status === "completed" ? "bg-linear-to-r from-cyan-500 to-blue-500" : "bg-white/20",
39 )}
40 />
41 )}
42 </div>
43
44 {/* Content */}
45 <div className="mt-4 text-center max-w-37.5">
46 <h4 className="font-medium text-white text-sm">{item.title}</h4>
47 {item.date && <p className="text-xs text-white/40 mt-1">{item.date}</p>}
48 {item.description && <p className="text-xs text-white/60 mt-2">{item.description}</p>}
49 </div>
50 </div>
51 ))}
52 </div>
53 </div>
54 )
55 }
56
57 return (
58 <div ref={ref} className={cn("relative", className)} {...props}>
59 {items.map((item, index) => (
60 <div key={item.id} className="flex gap-4 pb-8 last:pb-0">
61 {/* Node and line */}
62 <div className="flex flex-col items-center">
63 <GlassTimelineNode status={item.status} icon={item.icon} />
64 {index < items.length - 1 && (
65 <div
66 className={cn(
67 "w-0.5 flex-1 mt-2",
68// … truncated

Files it writes

  • registry/innovative/glass-timeline.tsx

Facts

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

Go to the source

Docs on einui ui.eindev.ir einui/einui on GitHub Raw registry item This item as JSON

More from einui

All 44 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Base Widgetbase-widgeteinuiComponentsFree1 dep
Calendar Widgetscalendar-widgeteinuiComponentsFree1 dep
Clock Widgetsclock-widgeteinuiComponentsFree1 dep
Glass Alert Dialogglass-alert-dialogeinuiComponentsFree1 dep
Glass Avatarglass-avatareinuiComponentsFree1 dep
Glass Badgeglass-badgeeinuiComponentsFree1 dep
Glass Breadcrumbglass-breadcrumbeinuiComponentsFree1 dep
Glass Buttonglass-buttoneinuiComponentsFree2 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