From b38a73eeacaa17973d45026e7670c230816a384e Mon Sep 17 00:00:00 2001 From: NotNite Date: Fri, 28 Apr 2023 17:25:37 -0400 Subject: [PATCH] add migadu icon --- src/app/me/AboutMe.tsx | 9 +++++++-- src/components/icons/MigaduIcon.tsx | 20 ++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 src/components/icons/MigaduIcon.tsx diff --git a/src/app/me/AboutMe.tsx b/src/app/me/AboutMe.tsx index 3894512..b60e1fd 100644 --- a/src/app/me/AboutMe.tsx +++ b/src/app/me/AboutMe.tsx @@ -21,6 +21,7 @@ import Connection from "@/components/Connection"; import DiscordIcon from "@/components/icons/DiscordIcon"; import GitHubIcon from "@/components/icons/GitHubIcon"; import TailscaleIcon from "@/components/icons/TailscaleIcon"; +import MigaduIcon from "@/components/icons/MigaduIcon"; type UpdateResponse = { ok: boolean; @@ -217,10 +218,14 @@ export default function AboutMe({ /> + - diff --git a/src/components/icons/MigaduIcon.tsx b/src/components/icons/MigaduIcon.tsx new file mode 100644 index 0000000..3089170 --- /dev/null +++ b/src/components/icons/MigaduIcon.tsx @@ -0,0 +1,20 @@ +import React from "react"; + +// https://www.migadu.com/svg/logo_bg.svg +export default function MigaduIcon() { + return ( + + + + ); +}