// Floating chat widget — LINE + Facebook + phone, bottom-right function ChatWidget() { const [open, setOpen] = React.useState(false); const items = [ { label: 'LINE OA', sub: '@bestdaily', url: 'https://line.me/R/ti/p/@bestdaily', bg: '#06c755', icon: 'L' }, { label: 'Facebook · องค์กร', sub: 'BEST Investigation', url: 'https://www.facebook.com/bestinves', bg: '#1877f2', icon: 'f' }, { label: 'Facebook · ทำความสะอาด', sub: 'Best Daily', url: 'https://www.facebook.com/bestdailycleaning', bg: '#1877f2', icon: 'f' }, { label: 'โทรศัพท์', sub: '02-111-5455', url: 'tel:021115455', bg: '#2d6a7a', icon: '☎' }, ]; return (
{open && items.map((it, i) => (
{it.icon}
{it.label}
{it.sub}
))}
); } window.ChatWidget = ChatWidget;