Files
blog-astro/src/consts.ts
2025-11-28 16:02:10 +08:00

62 lines
1.0 KiB
TypeScript

import type { IconMap, SocialLink, Site } from '@/types'
export const ENABLE_LIGHTBOX = true
export const SITE: Site = {
title: '溴化锂的笔记本',
description:
'Security, Programming, Life',
href: 'https://nvme0n1p.dev',
author: 'libr',
locale: 'zh-CN',
featuredPostCount: 5,
postsPerPage: 8,
}
export const NAV_LINKS: SocialLink[] = [
{
href: '/blog',
label: 'blog',
},
{
href: '/tags',
label: 'tags',
},
{
href: '/about',
label: 'about',
},
{
href: '/friends',
label: 'friends',
},
]
export const SOCIAL_LINKS: SocialLink[] = [
{
href: 'https://github.com/lbr77',
label: 'GitHub',
},
{
href: 'https://twitter.com/0x88ffa357',
label: 'Twitter',
},
{
href: 'mailto:me@nvme0n1p.dev',
label: 'Email',
},
{
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',
}