Initial commit

This commit is contained in:
Timothy DeHerrera
2022-11-01 15:18:00 -06:00
committed by GitHub
commit 14079f0511
90 changed files with 7473 additions and 0 deletions

37
src/config.ts Normal file
View 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