Components
Loading preview...
animated button with background
@beratberkay
npx shadcn@latest add https://21st.dev/r/beratberkayg/animated-buttonimport { Component } from "@/components/ui/animated-button";
export default function DemoOne() {
return <div className="w-full h-screen flex items-center justify-center mx-auto relative" > <Component /> <div
className = "absolute w-full h-full -z-10"
style = {{
backgroundImage:
"url('data:image/svg+xml,%3Csvg width=\\'4\\' height=\\'4\\' viewBox=\\'0 0 6 6\\' xmlns=\\'http://www.w3.org/2000/svg\\'%3E%3Ccircle cx=\\'6\\' cy=\\'6\\' r=\\'1\\' fill=\\'%23aaa\\' fill-opacity=\\'0.25\\' /%3E%3C/svg%3E')",
backgroundColor: "transparent",
}
}
> </div></div >;
}