import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faGithub } from "@fortawesome/free-brands-svg-icons"; import { faCodeBranch } from "@fortawesome/free-solid-svg-icons"; import giteaLogo from "../assets/gitea.png"; import gitlabLogo from "../assets/gitlab.png"; export function RepoIcon({ repoUrl }: { repoUrl: string }) { const lower = repoUrl.toLowerCase(); if (lower.includes("github.com")) return ; if (lower.includes("gitlab")) return GitLab; if (lower.includes("gitea")) return Gitea; return ; }