Files
sukr/src/config.ts
Timothy DeHerrera a3a6f8ee3d fixes: fix dark scheme & port from legacy blog
My old blog only ever had 1 post, but its a good place to start.
2022-12-09 12:11:14 -07:00

37 lines
668 B
TypeScript

import type{ NavItems } from './types'
export const NAV_ITEMS: NavItems = {
home: {
path: '/',
title: 'home'
},
blog: {
path: '/blog',
title: 'blog'
},
tags: {
path: '/tags',
title: 'tags'
},
// media: {
// path: '/media',
// title: 'media'
// },
about: {
path: '/about',
title: 'about'
}
}
export const SITE = {
name: 'nrdlg',
title: 'nrdlg',
description: 'Personal blog of Tim DeHerrera',
url: 'https://nrd.sh',
ghUser: 'nrdxp',
githubUrl: 'https://github.com/nrdxp',
listDrafts: false
}
export const PAGE_SIZE = 8