Getting Started
To install Gemini UI run the following command
npm i @gemini-ui-astro/components yarn add @gemini-ui-astro/components 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>