Initial commit
This commit is contained in:
37
src/config.ts
Normal file
37
src/config.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
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 = {
|
||||
// Your site's detail?
|
||||
name: 'Ink',
|
||||
title: 'Astro - Ink',
|
||||
description: 'Crisp, minimal, personal blog theme for Astro',
|
||||
url: 'https://astro-ink.vercel.app',
|
||||
githubUrl: 'https://github.com/one-aalam/astro-ink',
|
||||
listDrafts: true
|
||||
// description ?
|
||||
}
|
||||
|
||||
export const PAGE_SIZE = 8
|
||||
Reference in New Issue
Block a user