A lean, elegant, zero-dependency React component library — server-first, SSR-safe, themeable with CSS tokens — plus a Next.js showcase app.
packages/library– the component library (@creo-team/buzz-ui)apps/site– Next.js site that showcases components
# install
npm install
# develop (runs the Next.js showcase — consumes library source directly)
npm run dev
# build the publishable library (dist + styles.css)
npm run -w @creo-team/buzz-ui build
# test + typecheck everything
npm test && npm run typechecknpm i @creo-team/buzz-ui// once, at your app root
import '@creo-team/buzz-ui/styles.css'
import { Card, Button } from '@creo-team/buzz-ui'
// RSC-safe subset (zero client JS for static components):
// import { Card, Table } from '@creo-team/buzz-ui/server'
// Interactive components and hooks:
// import { Modal, toast, useHotkey } from '@creo-team/buzz-ui/client'See packages/library/README.md for the full
tour, THEMING.md for tokens and themes, and
CHANGELOG.md for release notes.
- Zero dependencies — no animation/toast/icon/CSS-in-JS libraries; the platform is enough
- Server Components first — static components ship no client JS; interactivity is isolated into islands
- Accessibility by default — WAI-ARIA interaction patterns, focus management, reduced-motion support
- Zero-runtime styling — one stylesheet, CSS custom-property tokens,
stable
bz-*/data-*styling hooks - Minimal props, sensible defaults — controlled and uncontrolled modes everywhere
- No semicolons, tabs preferred in code style
MIT