Added base content styling & definition list

This commit is contained in:
2025-09-09 14:42:27 +02:00
parent a549960647
commit 485b57b847
52 changed files with 5338 additions and 1387 deletions

19
keystatic.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import { config } from '@keystatic/core'
import { MetaPostsCollection } from '@/lib/keystatic/collections/meta/article'
import { AuthorsCollection } from '@/lib/keystatic/collections/taxonomy/authors'
import { TagsCollection } from '@/lib/keystatic/collections/taxonomy/tags'
export default config({
storage: {
kind: 'local',
},
ui: {
brand: { name: 'Dave | DMG' },
},
collections: {
tags: TagsCollection,
authors: AuthorsCollection,
meta_posts: MetaPostsCollection,
},
})