Glasswave UI

Installation

How to install dependencies and structure your app.

Install the package

1npm install glasswave2# or3yarn add glasswave4# or5pnpm add glasswave6# or7bun add glasswave

Import styles

Glasswave includes a pre-built CSS file, you need to import it in your globals.css before @import "tailwindcss" so that CSS layers resolve correctly.

1@import "glasswave/styles";2@import "tailwindcss";

If you don't use Tailwind v4 in your project, you can import the CSS in your layout instead:

1import "glasswave/styles";