"use client"

import { images } from "@/lib/images"
import Image from "next/image"
import Link from "next/link"

const WhatsApp = () => {
  return (
    <Link
      href="https://wa.me/+966549380000"
      target="_blank"
      className="fixed bottom-10 right-8 p-1 rounded-full hover:scale-110 transition bg-mainBlue hover:bg-mainLime z-50"
    >
      <Image
        src={images.whatsapp}
        alt="whatsapp"
        width={100}
        height={100}
        className="w-[30px] lg:w-[45px] rounded-full"
      />
    </Link>
  )
}

export default WhatsApp
