Docs/Introduction

Introduction

Welcome to ZeroUI - a modern, beautiful component library for building stunning web applications.

Features

  • Beautiful by default - Carefully crafted components that look great out of the box
  • Dark mode ready - Full dark mode support with smooth transitions
  • Fully customizable - Easy to customize with Tailwind CSS
  • TypeScript first - Built with TypeScript for better developer experience

Quick Start

Get started with ZeroUI in minutes. Follow the steps below to install and use components in your project.

Installation

npm install zeroui

Or use your preferred package manager:

yarn add zerouipnpm add zeroui

Usage

Import and use components in your React application:

import { Button } from 'zeroui'

export default function App() {
  return (
    <Button variant="primary">
      Click me
    </Button>
  )
}

Next Steps