Getting Started
Components
Note: Since Ebon UI was inspired by shadcn/ui we have the same installation process.
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 GlowCard component to your project. You can then import it like this:
import { GlowCard } from "@/components/ui/glow-card"
export default function Home() {
return <GlowCard />
}