BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/Animate UI/components-community-management-bar

Management Bar

animate-ui/components-community-management-bar
FreeComponent

A management bar for managing items.

Install it

npx shadcn@latest add https://animate-ui.com/r/components-community-management-bar.json

Source

registry/components/community/management-bar/index.tsxanimate-ui.com/r/components-community-management-bar.json
1'use client';
2
3import * as React from 'react';
4import {
5 ChevronLeft,
6 ChevronRight,
7 Ban,
8 X,
9 Command,
10 IdCard,
11} from 'lucide-react';
12import { SlidingNumber } from '@/components/animate-ui/primitives/texts/sliding-number';
13import { motion, type Variants, type Transition } from 'motion/react';
14
15const TOTAL_PAGES = 10;
16
17const BUTTON_MOTION_CONFIG = {
18 initial: 'rest',
19 whileHover: 'hover',
20 whileTap: 'tap',
21 variants: {
22 rest: { maxWidth: '40px' },
23 hover: {
24 maxWidth: '140px',
25 transition: { type: 'spring', stiffness: 200, damping: 35, delay: 0.15 },
26 },
27 tap: { scale: 0.95 },
28 },
29 transition: { type: 'spring', stiffness: 250, damping: 25 },
30} as const;
31
32const LABEL_VARIANTS: Variants = {
33 rest: { opacity: 0, x: 4 },
34 hover: { opacity: 1, x: 0, visibility: 'visible' },
35 tap: { opacity: 1, x: 0, visibility: 'visible' },
36};
37
38const LABEL_TRANSITION: Transition = {
39 type: 'spring',
40 stiffness: 200,
41 damping: 25,
42};
43
44function ManagementBar() {
45 const [currentPage, setCurrentPage] = React.useState(1);
46
47 const handlePrevPage = React.useCallback(() => {
48 if (currentPage > 1) setCurrentPage(currentPage - 1);
49 }, [currentPage]);
50
51 const handleNextPage = React.useCallback(() => {
52 if (currentPage < TOTAL_PAGES) setCurrentPage(currentPage + 1);
53 }, [currentPage]);
54
55 return (
56 <div className="@container/wrapper w-full flex justify-center">
57 <div className="flex w-fit flex-col @xl/wrapper:flex-row items-center gap-y-2 rounded-2xl border border-border bg-background p-2 shadow-lg">
58 <div className="mx-auto flex flex-col @lg/wrapper:flex-row shrink-0 items-center">
59 <div className="flex h-10">
60 <button
61 disabled={currentPage === 1}
62 className="p-1 text-muted-foreground transition-colors hover:text-foreground disabled:text-muted-foreground/30 disabled:hover:text-muted-foreground/30"
63 onClick={handlePrevPage}
64 >
65 <ChevronLeft size={20} />
66 </button>
67 <div className="mx-2 flex items-center space-x-1 text-sm tabular-nums">
68 <SlidingNumber
69 className="text-foreground"
70 padStart
71 number={currentPage}
72 />
73 <span className="text-muted-foreground">/ {TOTAL_PAGES}</span>
74 </div>
75 <button
76 disabled={currentPage === TOTAL_PAGES}
77// … truncated

What it pulls in

npm packages

  • motion
  • lucide-react

Other registry items

  • @animate-ui/primitives-texts-sliding-number

Files it writes

  • registry/components/community/management-bar/index.tsx

Facts

Registry
Animate UI
Type
registry:ui
Access
Free
Files written
1
Licence
the repository states none
In the index
at or before 2026-08-12
Last confirmed
today

Go to the source

animate-ui.com imskyleen/animate-ui on GitHub Raw registry item This item as JSON

More from Animate UI

All 580 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Avatar Groupcomponents-animate-avatar-groupAnimate UIComponentsFree1 dep
Codecomponents-animate-codeAnimate UIComponentsFree1 dep
Code Tabscomponents-animate-code-tabsAnimate UIComponentsFree1 dep
Cursorcomponents-animate-cursorAnimate UIComponentsFreeno deps
GitHub Stars Wheelcomponents-animate-github-stars-wheelAnimate UIComponentsFree1 dep
Tabscomponents-animate-tabsAnimate UIComponentsFreeno deps
Tooltipcomponents-animate-tooltipAnimate UIComponentsFree1 dep
Bubble Backgroundcomponents-backgrounds-bubbleAnimate UIComponentsFree1 dep

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