* chore: remove posthog events * chore: remove event tracking * chore: lint errors * chore: minor changes based on comments * fix: type errors
27 lines
972 B
TypeScript
27 lines
972 B
TypeScript
import { useTheme } from "next-themes";
|
|
// plane imports
|
|
import { useTranslation } from "@plane/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() {
|
|
// plane 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/plane"
|
|
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>
|
|
);
|
|
}
|