chore: add new socials (#38)

### Explanation

_No response_

### Issue

_No response_

### Attestations

- [ ] I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/)
- [ ] I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/).
- [ ] My contribution complies with the [Contributor Covenant](https://docs.nhcarrigan.com/dev/covenant/).

### Dependencies

- [ ] I have pinned the dependencies to a specific patch version.

### Style

- [ ] I have run the linter and resolved any errors.
- [ ] My pull request uses an appropriate title, matching the conventional commit standards.
- [ ] My scope of feat/fix/chore/etc. correctly matches the nature of changes in my pull request.

### Tests

- [ ] My contribution adds new code, and I have added tests to cover it.
- [ ] My contribution modifies existing code, and I have updated the tests to reflect these changes.
- [ ] All new and existing tests pass locally with my changes.
- [ ] Code coverage remains at or above the configured threshold.

### Documentation

_No response_

### Versioning

_No response_

Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/38
Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com>
Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
This commit is contained in:
2024-11-04 22:43:07 +00:00
committed by Naomi the Technomancer
parent cfbe6ebfea
commit 960d8dec81
5 changed files with 369 additions and 2 deletions

View File

@ -19,6 +19,7 @@ import {
faNpm,
faPatreon,
faPaypal,
faProductHunt,
faReddit,
faSignalMessenger,
faSlack,
@ -32,9 +33,9 @@ import {
faWhatsapp,
faWordpress,
faYoutube,
faSnapchat,
faXTwitter,
} from "@fortawesome/free-brands-svg-icons";
import { faSnapchat } from "@fortawesome/free-brands-svg-icons/faSnapchat";
import { faXTwitter } from "@fortawesome/free-brands-svg-icons/faXTwitter";
import {
faAtom,
faBriefcase,
@ -50,6 +51,7 @@ import { Coursera } from "../icons/Coursera";
import { Fiverr } from "../icons/Fiverr";
import { Gather } from "../icons/Gather";
import { Gog } from "../icons/Gog";
import { Gumroad } from "../icons/Gumroad";
import { Kofi } from "../icons/KoFi";
import { Matrix } from "../icons/Matrix";
import { Peerlist } from "../icons/Peerlist";
@ -59,6 +61,7 @@ import { RetroAchievements } from "../icons/RetroAchievements";
import { Saylor } from "../icons/Saylor";
import { TeeSpring } from "../icons/TeeSpring";
import { Throne } from "../icons/Throne";
import { Topmate } from "../icons/Topmate";
import { TreeNation } from "../icons/TreeNation";
import { Udemy } from "../icons/Udemy";
import { VRoid } from "../icons/VRoid";
@ -557,6 +560,30 @@ const Socials: Array<{
label: "RetroAchievements",
link: "https://retroachievements.org/user/naomilgbt",
},
{
alt: "ProductHunt Logo",
background: "#da552f",
color: "#FFFFFF",
icon: faProductHunt,
label: "ProductHunt",
link: "https://www.producthunt.com/@naomi_lgbt",
},
{
alt: "Topmate Logo",
background: "#e44332",
color: "#FFFFFF",
icon: Topmate,
label: "Topmate",
link: "https://topmate.io/nhcarrigan",
},
{
alt: "Gumroad Logo",
background: "#fe90e7",
color: "#000000",
icon: Gumroad,
label: "Gumroad",
link: "https://nhcarrigan.gumroad.com",
},
];
export { HireMe, Donate, Socials };