Gengar UI

Gengar UI

A modern terminal-inspired component library for React applications. Built with performance and developer experience in mind.

Terminal-Inspired

Beautiful components that combine terminal aesthetics with modern usability.

Comprehensive

Everything you need to build modern React applications with a terminal feel.

Fully Customizable

Every component can be styled and themed to match your brand.

Installation

components/ui/button.tsx
// Copy the components you need into your project
// Each component page has the full source code

components/
  └── ui/
      ├── button.tsx
      ├── card.tsx
      └── ... other components

Quick Start

app/page.tsx
import { Button } from '@/components/ui/button'

export default function Page() {
  return (
    <Button>
      Hello, Terminal!
    </Button>
  )
}