Skip to content

Getting Started

To install Gemini UI run the following command

npm i @gemini-ui-astro/components

Please note, this library is still under construction and may having breaking changes going forward. We will aim to minimise any impact with our future changes

Basic Usage

After installation, you can import any Gemini UI component and start playing around. For example, try changing the dynamicGlow on the Card to see how the style changes:

This is a card with dynamic glow
---
import { Card } from "@gemini-ui-astro/components";
---
<Card dynamicGlow>This is a card with dynamic glow</Card>