BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/atroui/changelog

Changelog

atroui/changelog
FreeBlock

Filterable month-grouped changelog list.

Install it

npx shadcn@latest add https://atroui.com/r/changelog.json

Source

registry/default/blocks/changelog.tsxatroui.com/r/changelog.json
1"use client"
2
3import * as React from "react"
4
5export type ChangelogEntry = {
6 date: string
7 content: string
8 tags?: string[]
9}
10
11const ENTRIES: ChangelogEntry[] = [
12 {
13 date: "2026-08-01",
14 content: "Shipped a narrow personal site kit for the registry.",
15 tags: ["ship", "registry"],
16 },
17 {
18 date: "2026-07-18",
19 content: "Tightened token mapping for hairline lists and mono stamps.",
20 tags: ["design"],
21 },
22 {
23 date: "2026-07-04",
24 content: "Added command menu and countdown building blocks.",
25 tags: ["build"],
26 },
27 {
28 date: "2026-06-20",
29 content: "Documented Open-Meteo weather chip and local clock.",
30 tags: ["docs"],
31 },
32]
33
34function formatDate(iso: string) {
35 const d = new Date(iso.length <= 10 ? `${iso}T00:00:00Z` : iso)
36 return new Intl.DateTimeFormat("en-US", {
37 month: "short",
38 day: "2-digit",
39 timeZone: "UTC",
40 }).format(d)
41}
42
43function monthKey(iso: string) {
44 const d = new Date(iso.length <= 10 ? `${iso}T00:00:00Z` : iso)
45 return new Intl.DateTimeFormat("en-US", {
46 year: "numeric",
47 month: "long",
48 timeZone: "UTC",
49 }).format(d)
50}
51
52function defaultTags(entries: ChangelogEntry[]) {
53 const set = new Set<string>()
54 for (const e of entries) {
55 for (const t of e.tags ?? []) set.add(t)
56 }
57 return Array.from(set).sort()
58}
59
60export function Changelog({
61 entries = ENTRIES,
62 tags,
63 className,
64}: {
65 entries?: ChangelogEntry[]
66 tags?: string[]
67 className?: string
68} = {}) {
69 const allTags = tags ?? defaultTags(entries)
70 const [activeTag, setActiveTag] = React.useState("")
71
72 const filtered = React.useMemo(() => {
73 if (!activeTag) return entries
74 return entries.filter((e) => e.tags?.includes(activeTag))
75 }, [entries, activeTag])
76
77 const grouped = React.useMemo(() => {
78 const map = new Map<string, ChangelogEntry[]>()
79 for (const e of filtered) {
80 const k = monthKey(e.date)
81 const arr = map.get(k) ?? []
82 arr.push(e)
83 map.set(k, arr)
84 }
85 return Array.from(map.entries())
86 }, [filtered])
87
88 const toggleTag = (tag: string) => {
89 setActiveTag((prev) => (prev === tag ? "" : tag))
90 }
91
92 return (
93 <div className={className ?? "mx-auto max-w-[640px]"}>
94 {allTags.length > 0 ? (
95 <div className="mb-10 flex flex-wrap items-center gap-1.5">
96 <span className="mr-1.5 font-mono text-[10.5px] tracking-[0.12em] text-muted-foreground uppercase">
97 Filter
98 </span>
99 <TagButton
100 label="all"
101// … truncated

Files it writes

  • registry/default/blocks/changelog.tsx

Facts

Registry
atroui
Type
registry:block
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-13
Last confirmed
yesterday

Go to the source

atroui.com atroui/atroui on GitHub Raw registry item This item as JSON

More from atroui

All 82 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Analytics Provideranalytics-provideratrouiBlocksFree1 dep
AR Portfolioar-portfolioatrouiBlocksFree1 dep
Before / Afterbefore-after-slideratrouiBlocksFreeno deps
Calendly Embedcalendly-embedatrouiBlocksFree1 dep
Command Menucommand-menuatrouiBlocksFree4 deps
Contact Formcontact-formatrouiBlocksFree2 deps
Contextual CTAcontextual-ctaatrouiBlocksFree2 deps
Count Upcount-upatrouiBlocksFreeno 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