Components
Loading preview...
animated glass button
@beratberkay
npx shadcn@latest add https://21st.dev/r/beratberkayg/buttonimport { Component } from "@/components/ui/button";
import { Twitter } from "lucide-react";
export default function DemoOne() {
return<div className="w-full h-screen flex items-center justify-center mx-auto relative" > <Component icon={<Twitter />}
title="Twiiter"
subtitle="Join community"
size="md"
/> <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 > ;
}