diff --git a/src/app/me/AboutMe.tsx b/src/app/me/AboutMe.tsx index 90ff8a5..3894512 100644 --- a/src/app/me/AboutMe.tsx +++ b/src/app/me/AboutMe.tsx @@ -20,6 +20,7 @@ import inputStyles from "@/components/Input.module.css"; import Connection from "@/components/Connection"; import DiscordIcon from "@/components/icons/DiscordIcon"; import GitHubIcon from "@/components/icons/GitHubIcon"; +import TailscaleIcon from "@/components/icons/TailscaleIcon"; type UpdateResponse = { ok: boolean; @@ -214,7 +215,11 @@ export default function AboutMe({ authState={githubState} icon={GitHubIcon} /> - + diff --git a/src/components/icons/TailscaleIcon.tsx b/src/components/icons/TailscaleIcon.tsx new file mode 100644 index 0000000..3de1ec3 --- /dev/null +++ b/src/components/icons/TailscaleIcon.tsx @@ -0,0 +1,26 @@ +import React from "react"; + +// https://tailscale.com/files/dist/tailscale-press-kit.zip +export default function TailscaleIcon() { + return ( + + + + + + + + + + + + + + ); +}