From 8e48e40a315572449298052b2840fa03a45668e3 Mon Sep 17 00:00:00 2001 From: Franek Date: Sun, 11 May 2025 00:52:04 +0200 Subject: [PATCH] add: Signal contact info & Akkoma -> Pleroma --- .../fediverse/{akkoma.svg => pleroma.svg} | 0 public/icons/signal.svg | 6 ++++ src/sections/links.tsx | 34 ++++++++++++------- 3 files changed, 28 insertions(+), 12 deletions(-) rename public/icons/fediverse/{akkoma.svg => pleroma.svg} (100%) create mode 100644 public/icons/signal.svg diff --git a/public/icons/fediverse/akkoma.svg b/public/icons/fediverse/pleroma.svg similarity index 100% rename from public/icons/fediverse/akkoma.svg rename to public/icons/fediverse/pleroma.svg diff --git a/public/icons/signal.svg b/public/icons/signal.svg new file mode 100644 index 0000000..c278c9c --- /dev/null +++ b/public/icons/signal.svg @@ -0,0 +1,6 @@ + + + +signal + + \ No newline at end of file diff --git a/src/sections/links.tsx b/src/sections/links.tsx index a626a72..a0e7810 100644 --- a/src/sections/links.tsx +++ b/src/sections/links.tsx @@ -3,9 +3,12 @@ import { asCardStack } from "../components/card-stack"; const Links: React.FC = () => { return <> -

Fediverse!

+

Fediverse...

{asCardStack(FEDIVERSE_LINKS)} +

Contact ways...

+ {asCardStack(CONTACT_WAYS)} +

Some links...

{asCardStack(LINKS)} ; @@ -17,22 +20,34 @@ const Heading = styled.h1` const FEDIVERSE_LINKS = [ { - content: "Akkoma", - icon: "/icons/fediverse/akkoma.svg", - link: "https://akkoma.sador.me" + content: "Pleroma", + icon: "/icons/fediverse/pleroma.svg", + link: "https://social.sador.me/@boss" }, { content: "Pixelfed", icon: "/icons/fediverse/pixelfed.svg", - link: "https://pix.sador.me" + link: "https://pix.sador.me/boss" }, { content: "PeerTube", icon: "/icons/fediverse/peertube.svg", - link: "https://tube.sador.me/home" + link: "https://tube.sador.me/c/sador" } ].map(link => Object.assign(link, { primary: true })); +const CONTACT_WAYS = [ + { + content: "Matrix", + icon: "/icons/matrix.svg", + link: "https://matrix.to/#/@boss:sador.me" + }, + { + content: "@sadorowo.66", + icon: "/icons/signal.svg" + } +]; + const LINKS = [ { content: "PGP", @@ -55,11 +70,6 @@ const LINKS = [ icon: "/icons/gitea.svg", link: "https://git.sador.me" }, - { - content: "Matrix", - icon: "/icons/matrix.svg", - link: "https://matrix.to/#/@boss:sador.me" - }, { content: "Instagram (deactivated)", icon: "/icons/instagram.svg", @@ -68,4 +78,4 @@ const LINKS = [ } ]; -export default Links; \ No newline at end of file +export default Links;