Components
Floating action button that opens a WhatsApp chat with a pre-filled message. Perfect for booking inquiries and customer support.
Loading preview...
import WhatsAppButton from "@/components/ui/whatsappbutton";
export default function WhatsAppButtonDemo() {
return (
<div className="min-h-[400px] relative bg-gray-100 p-8">
<div className="max-w-md mx-auto text-center pt-20">
<h2 className="text-xl font-semibold mb-2">WhatsApp Click-to-Chat</h2>
<p className="text-gray-500 text-sm">
The green FAB appears at bottom-right. Click to start a chat.
</p>
</div>
<WhatsAppButton />
</div>
);
}