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

19
types/keystatic.ts Normal file
View File

@@ -0,0 +1,19 @@
import { Entry } from '@keystatic/core/reader'
import keystaticConfig from '~/keystatic.config'
export type Author = Entry<(typeof keystaticConfig.collections)['authors']>
export type Tag = Entry<(typeof keystaticConfig.collections)['tags']>
export type AWQArticle = Entry<
(typeof keystaticConfig.collections)['awq_posts']
>
export type AWQTalent = Entry<
(typeof keystaticConfig.collections)['awq_talents']
>
export type MetaArticle = Entry<
(typeof keystaticConfig.collections)['meta_posts']
>
export type AWQContent = AWQArticle | AWQTalent
export type MetaContent = MetaArticle
export type ArticleContent = AWQContent | MetaContent