Getting Started
Components
Special Effects
Animations
Text Animations
Backgrounds
Note: We have the exact same installation process as shadcn/ui.
Run the init command to create a new Next.js project or to setup an existing one:
You can now start adding components to your project.
The command above will add the Globe component to your project. You can then import it like this:
import { Globe } from "@/components/ui/globe"
export default function Home() {
return <Globe />
}