Getting started
Installation
Add UX.SOL registry items directly to your app with the shadcn CLI.
1. Start with a Next.js app
UX.SOL is built for React and Next.js App Router projects. Use an existing app or create a new one.
terminal$npx create-next-app@latest my-solana-app2. Add a registry item
Open an item, copy its install command, and run it from your project root.
terminal$npx shadcn@latest add https://uxdotsol.xyz/r/address-display.json3. Use the copied files
Each item declares its files and dependencies. After installation, import the copied component, hook, flow, or template into your app.
usageimport { AddressDisplay } from "@/components/address-display";