add upwork link

This commit is contained in:
Ivan Dimitrov 2024-01-08 14:49:22 +02:00
parent bb695df1af
commit 102095c794

View File

@ -1,11 +1,11 @@
import GiteaSvg from "@/components/gitea-svg";
import { faGithub, faGitlab } from "@fortawesome/free-brands-svg-icons";
import { faGithub, faGitlab, faUpwork } from "@fortawesome/free-brands-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import Link from "next/link";
const Home = () => (
<div className="grid w-full h-full place-content-center">
<div className={"grid grid-cols-3 gap-4 place-content-center"}>
<div className={"grid grid-cols-2 gap-4 place-content-center"}>
<Link aria-label="GitLab" href={process.env.NEXT_PUBLIC_GITEA_URL || "https://src.idimitrov.dev/ivan"} target="_blank">
<GiteaSvg />
</Link>
@ -15,6 +15,9 @@ const Home = () => (
<Link aria-label="GitLab" href={process.env.NEXT_PUBLIC_GITLAB_URL || "https://gitlab.com/ivandimitrov8080"} target="_blank">
<FontAwesomeIcon className="w-14 h-14" icon={faGitlab} />
</Link>
<Link aria-label="Upwork" href={process.env.NEXT_PUBLIC_UPWORK_URL || "https://www.upwork.com/freelancers/idimitrov"} target="_blank">
<FontAwesomeIcon className="w-14 h-14" icon={faUpwork} />
</Link>
</div>
</div>
);