import Image from "next/image"
import Link from "next/link"

interface LogoProps {
  href: string
  className?: string
}

export function Logo({ href, className = "" }: LogoProps) {
  return (
    <Link href={href} className={`flex items-center gap-2 ${className}`}>
      <Image
        src="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Phatsimo_Logo.jpg-qWqmJ97In0u708e3ueQyFL2mrqf575.jpeg"
        alt="PMC Logo"
        width={120}
        height={40}
        className="object-contain"
      />
    </Link>
  )
}

