Components
Group Invitation Card This card notifies you when someone invites you to join a group or organization. It shows who sent the invitation, their contact information, and the purpose of the group. You can quickly accept and start chatting or decline the invitation with a single click.
Loading preview...
import { GroupCard } from "@/components/ui/unique-group-invitation-card";
export default function DemoOne() {
return <GroupCard
name="John Ali"
email="jonedev@gmail.com"
purpose="The group card invitaion send on 21st.dev. It is beautiful and simple design of groupcard invitation"
onChat={() => console.log("Chat")}
onExit={() => console.log("Exit")}
/>;
}