feat(index): add social icons
This commit is contained in:
parent
e58ca4fad7
commit
800789db7a
1 changed files with 28 additions and 19 deletions
|
@ -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",
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue