

import { useTheme } from "next-themes";
// buzzwareTech imports
import { useTranslation } from "@buzzwaretech/i18n";
// assets
import githubBlackImage from "@/app/assets/logos/github-black.png?url";
import githubWhiteImage from "@/app/assets/logos/github-white.png?url";

export function StarUsOnGitHubLink() {
  // buzzwareTech hooks
  const { t } = useTranslation();
  // hooks
  const { resolvedTheme } = useTheme();
  const imageSrc =
    resolvedTheme === "dark" ? githubWhiteImage : githubBlackImage;

  return (
    <a
      aria-label={t("home.star_us_on_github")}
      className="flex flex-shrink-0 items-center gap-1.5 rounded-sm bg-layer-2 px-3 py-1.5"
      href="https://github.com/makeplane/buzzwareTech"
      target="_blank"
      rel="noopener noreferrer"
    >
      <img
        src={imageSrc}
        className="h-4 w-4 object-contain"
        alt="GitHub Logo"
        aria-hidden="true"
      />
      <span className="hidden text-11 font-medium sm:hidden md:block">
        {t("home.star_us_on_github")}
      </span>
    </a>
  );
}
