Getting Started
Templates
Components
Special 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 Map component to your project. You can then import it like this:
import { Map } from "@/components/eldoraui/map"
export default function Home() {
return <Map />
}