From 25048334030a89a0d34a7d5c120fcfa18412c7ea Mon Sep 17 00:00:00 2001 From: DefectingCat Date: Thu, 21 Dec 2023 17:30:55 +0800 Subject: [PATCH] add mastodon link --- components/pages/projects/content.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/components/pages/projects/content.tsx b/components/pages/projects/content.tsx index cee3391..22d696b 100644 --- a/components/pages/projects/content.tsx +++ b/components/pages/projects/content.tsx @@ -12,7 +12,7 @@ import { SiTsnode, SiVim, } from 'react-icons/si'; -import { TbBrandRust } from 'react-icons/tb'; +import { TbBrandMastodon, TbBrandRust } from 'react-icons/tb'; import { VscGithubInverted } from 'react-icons/vsc'; export const iconMap = { @@ -28,6 +28,7 @@ export const iconMap = { pluto: , mercury: , rust: , + mastodon: , }; export type Project = { @@ -124,4 +125,10 @@ export const selfHosts: Project[] = [ description: 'Some photos.', url: 'https://photos.rua.plus/', }, + { + icon: 'mastodon', + name: 'Mastodon', + description: 'Mastodon!', + url: 'https://m.rua.plus/', + }, ];