From 8bf25274e1b61c699b21b5137691686e06a51e2f Mon Sep 17 00:00:00 2001 From: Patrick Heneise Date: Fri, 10 Nov 2023 22:08:15 -0500 Subject: [PATCH] feat: add discord link --- src/components/SocialIcons.jsx | 8 ++++++++ src/routes/index.jsx | 7 ++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/components/SocialIcons.jsx b/src/components/SocialIcons.jsx index ff2b66a..71778d2 100644 --- a/src/components/SocialIcons.jsx +++ b/src/components/SocialIcons.jsx @@ -34,3 +34,11 @@ export function LinkedInIcon(props) { ) } + +export function DiscordIcon(props) { + return ( + + ) +} diff --git a/src/routes/index.jsx b/src/routes/index.jsx index 9f818c5..ad91a9a 100644 --- a/src/routes/index.jsx +++ b/src/routes/index.jsx @@ -9,7 +9,7 @@ import { } from 'solid-js' import clsx from 'clsx' import { Container } from '~/components/Container' -import { GitHubIcon, LinkedInIcon } from '~/components/SocialIcons' +import { GitHubIcon, LinkedInIcon, DiscordIcon } from '~/components/SocialIcons' import { A } from 'solid-start' import graphql from '~/lib/graphql.server.js' import fileQuery from '~/graphql/file.query.js' @@ -211,6 +211,11 @@ export default function App() { aria-label="Follow on LinkedIn" icon={LinkedInIcon} /> +