Added PageHeader and first content
Some checks failed
Build and Deploy Astro Site / deploy (push) Failing after 42s

This commit is contained in:
2025-09-11 23:22:55 +02:00
parent 17ca6ce809
commit 0e70773aa0
51 changed files with 1291 additions and 275 deletions

View File

@@ -1,5 +1,7 @@
import { config } from '@keystatic/core'
import { AWQPostsCollection } from '@/lib/keystatic/collections/awq/article'
import { AWQTalentsCollection } from '@/lib/keystatic/collections/awq/talents'
import { MetaPostsCollection } from '@/lib/keystatic/collections/meta/article'
import { AuthorsCollection } from '@/lib/keystatic/collections/taxonomy/authors'
import { TagsCollection } from '@/lib/keystatic/collections/taxonomy/tags'
@@ -15,5 +17,7 @@ export default config({
tags: TagsCollection,
authors: AuthorsCollection,
meta_posts: MetaPostsCollection,
awq_posts: AWQPostsCollection,
awq_talents: AWQTalentsCollection,
},
})