diff --git a/src/data/links.ts b/src/data/links.ts index 9542a12..8def302 100644 --- a/src/data/links.ts +++ b/src/data/links.ts @@ -6,23 +6,17 @@ export interface Link { } const links: Link[] = [ - { - name: "Matrix", - url: "https://matrix.to/#/@michael:chat.mzhang.io", - icon: "matrix-org", - description: "Come chat with me on Matrix", - }, { name: "Git", - url: "https://git.mzhang.io", + url: "https://git.mzhang.io/michael", icon: "gitea", description: "Check out my public open source projects on Forgejo", }, { - name: "GitHub", - url: "https://github.com/iptq", - icon: "github", - description: "See a history of my old projects on GitHub", + name: "Matrix", + url: "https://matrix.to/#/@michael:chat.mzhang.io", + icon: "matrix-org", + description: "Come chat with me on Matrix", }, { name: "Mastodon", @@ -42,6 +36,12 @@ const links: Link[] = [ icon: "linkedin", description: "Connect with me on LinkedIn", }, + { + name: "GitHub", + url: "https://github.com/iptq", + icon: "github", + description: "See a history of my old projects on GitHub", + }, ]; export default links;