import { siteSettings } from "@/lib/catalog";

export function WhatsAppFloat() {
  return (
    <a
      href={`https://wa.me/${siteSettings.whatsapp}`}
      target="_blank"
      rel="noreferrer"
      aria-label="হোয়াটসঅ্যাপে অর্ডার করুন"
      className="pulse-ring fixed bottom-5 right-5 z-40 grid size-14 place-items-center rounded-full bg-primary text-xl text-primary-foreground shadow-lg transition hover:bg-primary-deep"
    >
      <i className="fa-brands fa-whatsapp relative" aria-hidden="true" />
    </a>
  );
}
