Components
Brings interactive smoke effects to life. As your mouse moves, ethereal particles dance and swirl, adding a touch of magic to any web interface.
npx shadcn@latest add https://21st.dev/r/jatin-yadav05/smoke-cardLoading preview...
"use client"
import { SmokeCard } from "@/components/ui/smoke-card"
function SmokeCardDemo() {
return (
<div className="flex flex-col items-center justify-center p-8 gap-3">
<h1 className="text-4xl font-mono text-white text-center font-bold tracking-tight">
SMOKE EFFECT
</h1>
<div className="relative">
<SmokeCard />
</div>
</div>
);
}
export { SmokeCardDemo };