This component no longer exists. It was in gmhlab’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
design-system
gmhlab/design-systemRemovedBlock
gmhlab publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/gmhlab/monorepo/main/packages/ui/public/r/design-system.jsonSource
1"use client"23import { useState } from "react";4import { Header } from "./components/header"5import { Footer } from "./components/footer";6import { Badge } from "@/components/ui/badge";7import { Separator } from "@/components/ui/separator";8import {9 Bell,10 Search,11 Plus,12 Trash2,13 Edit,14 Settings,15 User,16 Download,17 ChevronRight,18 Star,19 Heart,20 Share2,21 MoreVertical22} from "lucide-react";23import { DesignTokens } from "./components/tokens";24import { TailwindColorPalettes } from "./components/palettes";2526export function DesignSystem() {27 const [switchChecked, setSwitchChecked] = useState(false);28 const [checkboxChecked, setCheckboxChecked] = useState(false);29 const [progress, setProgress] = useState(33);30 const [sliderValue, setSliderValue] = useState([50]);3132 return (33 <div className="min-h-screen bg-background">34 {/* <Toaster /> */}3536 {/* Header */}37 <Header />3839 {/* Main Content */}40 <main className="container py-12 px-8">41 <div className="max-w-5xl mx-auto space-y-12">4243 {/* Hero Section */}44 <header className="space-y-4">45 <Badge variant="secondary">Component Library</Badge>46 <h1 className="text-4xl tracking-tight">Modern UI Primitives</h1>47 <p className="text-xl text-muted-foreground max-w-3xl">48 A comprehensive collection of accessible, customizable, and production-ready React components built with Radix UI and Tailwind CSS.49 </p>50 </header>5152 <Separator />53 {/* Design Tokens Section */}54 <DesignTokens />55 <Separator />56 {/* Tailwind Color Palettes Section */}57 <TailwindColorPalettes />5859 </div>60 </main>61 {/* Footer */}62 <Footer />6364 </div>65 );66}
What it pulls in
npm packages
Other registry items
