"use client"; import React, { useState } from "react"; export default function ContactFloat() { const [open, setOpen] = useState(false); /** 3 extra contact icons */ const extraIcons = [ { href: "mailto:info@example.com", src: "/assets/images/icons/mail.png", label: "Mail", offset: 30, // main button bottom(60) + 20 = 80 }, { href: "https://wa.me/1234567890", src: "/assets/images/icons/whatsapp.png", label: "WhatsApp", offset: 90, // 60 + 90 }, { href: "sms:1234567890", src: "/assets/images/icons/sms.png", label: "SMS", offset: 150, // 60 + 160 }, ]; return (
); }