Skip to content
This repository has been archived by the owner on Jun 28, 2023. It is now read-only.

Commit

Permalink
Goodbye Twitter, Hello Fediverse and Twitch (#2861)
Browse files Browse the repository at this point in the history
* Goodbye Twitter, Hello Fediverse and Twitch

* Let's keep dev
  • Loading branch information
coreyja authored Nov 19, 2022
1 parent 9bb3b4f commit 2f7477b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.0.0
14.21.1
22 changes: 16 additions & 6 deletions src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import React from "react";
import headerStyles from "./header.module.scss";
import { Link } from "gatsby";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faGithub, faDev, faTwitter } from "@fortawesome/free-brands-svg-icons";
import {
faGithub,
faTwitch,
faMastodon,
faDev,
} from "@fortawesome/free-brands-svg-icons";
import { faRss } from "@fortawesome/pro-solid-svg-icons";

import Color from "../utils/colors";
Expand Down Expand Up @@ -36,16 +41,21 @@ const Header: React.FunctionComponent = () => (
icon={faGithub}
title="Github Profile Icon"
/>
<SocialIcon
href="https://twitch.tv/coreyja"
icon={faTwitch}
title="Twitch Profile Icon"
/>
<SocialIcon
href="https://toot.cat/@coreyja"
icon={faMastodon}
title="Fediverse Profile Icon"
/>
<SocialIcon
href="https://dev.to/coreyja"
icon={faDev}
title="Dev.to Profile Icon"
/>
<SocialIcon
href="https://twitter.com/coreyja_dev"
icon={faTwitter}
title="Twitter Profile Icon"
/>
<SocialIcon href="/rss.xml" icon={faRss} title="RSS Icon" />
</div>
</div>
Expand Down

0 comments on commit 2f7477b

Please sign in to comment.