Installation
How to add glsilk components to your project
Getting Started
Initialize shadcn
npx shadcn@latest initAdd all shadcn components to your project
npx shadcn@latest add --allAdd a specific glsilk component
npx shadcn@latest add https://glsilk.vercel.app/r/mesh-gradient-button.jsonThe command above will add the MeshGradientButton component to your project. You can then import it like this:
import { MeshGradientButton } from "@/components/ui/mesh-gradient-button";
export default function Home() {
return (
<div>
<MeshGradientButton>Click me</MeshGradientButton>
</div>
);
}