Atelier UI®

Read the docsGithub
Docs 1.0.0

Getting started

  • Browse Catalog
  • Installation
  • How to contribute
  • Code of conduct
  • Fluid Scene

Components (34)

  • Clip Reveal
  • Stripe Wipe
  • Sweep Exit
  • Dither Flow
    pro
  • Glowing Fog
    pro
  • Halftone Glow
    pro
  • Orbit Gallery
  • Sphere Gallery
  • Edge Bounce
  • Fluid Distortion
  • Image Trail
  • Lens Media
  • Liquid Media
  • Magnetic Dot Grid
  • Pixel Media
  • Pixel Trail
  • Pixelated Text
  • Text Bounce
  • Text Fluid
  • Text Roll
  • Text Scramble
  • Curve Media
  • Elastic Stick
    pro
  • Infinite Gallery
  • Infinite Parallax
  • Infinite Zoom
  • Pixel Scroll
  • Scattered Scroll
  • Text Split
  • WebGL Image
  • WebGL Provider
  • WebGL Scene
  • WebGL Text
  • WebGL Video
Atelier UI 1.0.0 ©2026
Star on githubBuy me a coffeellms.txt
  1. Docs
  2. /
  3. Getting Started
  4. /
  5. Installation

Installation

How to install and use Atelier UI components.

License key

Only required for pro components: see step 3.

Sign in to view your license key.
1

Set up Tailwind CSS

Atelier UI is built on Tailwind CSS v4. If your project doesn't use it yet, follow the Tailwind CSS installation guide first.

2

Add the WebGL provider

WebGL components render through one shared canvas. Install the provider and wrap your app root before using them:

npx atelier-ui add webgl-provider
Root layout
import { WebglProvider } from "@/components/webgl-provider";

export default function RootLayout({ children }) {
  return <WebglProvider>{children}</WebglProvider>;
}

Separate WebGL contexts can't share resources or post-processing, so one shared canvas avoids duplicated GPU work across effects.

For more information about configuring the canvas, see the WebGL Provider reference.

3

Set up pro license

Pro components require a license. Copy your key from the panel at the top of this page and add it to .env.local.

.env.local
ATELIER_PRO_KEY=<your-license-key>

Restart your dev server after adding the key.

4

Install a component

Pick a component from the docs, then install it:

  • CLI — installs the source and any shared dependencies.
  • Manual — copy each file by hand from the component page.
CLI example
npx atelier-ui add fluid-distortion
  • Set up Tailwind CSS
  • Add the WebGL provider
  • Set up pro license
  • Install a component
Star on githubBuy me a coffeellms.txt