diff --git a/src/consts.ts b/src/consts.ts index cc2a4e0..9fa9821 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -1,25 +1,34 @@ -import type { IconMap, SocialLink, Site } from '@/types' +import type { IconMap, Site, SocialLink } from "@/types"; export const SITE: Site = { - title: "z0x's blog", - description: "Guides and various ramblings provided by z0x. Opinions are my own, no warranty provided.", - featuredPostCount: 2, - postsPerPage: 3, - href: 'https://blog.z0x.ca', -} + title: "z0x's blog", + description: + "Guides and various ramblings provided by z0x. Opinions are my own, no warranty provided.", + featuredPostCount: 2, + postsPerPage: 3, + href: "https://blog.z0x.ca", +}; export const SOCIAL_LINKS: SocialLink[] = [ - { - href: '/rss.xml', - label: 'RSS', - }, -] + { + href: "https://matrix.to/#/@z0x:z0x.ca", + label: "Matrix", + }, + { + href: "https://git.z0x.ca", + label: "Forgejo", + }, + { + href: "/rss.xml", + label: "RSS", + }, +]; export const ICON_MAP: IconMap = { - Website: 'lucide:globe', - GitHub: 'lucide:github', - LinkedIn: 'lucide:linkedin', - Twitter: 'lucide:twitter', - Email: 'lucide:mail', - RSS: 'lucide:rss', -} + Website: "lucide:globe", + Forgejo: "simple-icons:forgejo", + LinkedIn: "lucide:linkedin", + Twitter: "lucide:twitter", + Matrix: "simple-icons:matrix", + RSS: "lucide:rss", +};