import Image from "next/image";

import { APP_CONFIG } from "@/config/app-config";
import { cn } from "@/lib/utils";

type OxyfinzLogoProps = {
  className?: string;
};

export function OxyfinzLogo({ className }: OxyfinzLogoProps) {
  return (
    <Image
      src="/assets/logooxy.png"
      alt={APP_CONFIG.name}
      width={665}
      height={161}
      priority
      unoptimized
      className={cn("h-10 w-auto max-w-full select-none object-contain object-left", className)}
    />
  );
}
