diff --git a/app/components/SocialIcons.tsx b/app/components/SocialIcons.tsx index 4f2236b..2a41f81 100644 --- a/app/components/SocialIcons.tsx +++ b/app/components/SocialIcons.tsx @@ -36,3 +36,11 @@ export function LinkedInIcon(props: ComponentPropsWithoutRef<"svg">) { ); } + +export function BlueSkyIcon(props: ComponentPropsWithoutRef<"svg">) { + return ( + + ); +} diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index 11df50e..e8c7941 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -5,7 +5,7 @@ import { z } from "zod"; import { Button, ButtonLink } from "~/components/Button"; import { Card } from "~/components/Card"; import { Container } from "~/components/Container"; -import { GitHubIcon, LinkedInIcon } from "~/components/SocialIcons"; +import { BlueSkyIcon, GitHubIcon, LinkedInIcon } from "~/components/SocialIcons"; import { getCachedArticles } from "~/lib/articles.server"; import { formatDate } from "~/lib/formatDate"; import type { Article } from "~/lib/types"; @@ -154,6 +154,7 @@ function Profile() { aria-label="Follow on LinkedIn" icon={LinkedInIcon} /> + );