From 75d5052e86336d9bdc8a5ac047fde3a416823453 Mon Sep 17 00:00:00 2001 From: Wei Yen Lee Date: Thu, 7 Nov 2024 14:04:31 +1100 Subject: [PATCH] Add Bluesky link --- app/components/SocialIcons.tsx | 8 ++++++++ app/routes/_index.tsx | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) 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} /> + );