summaryrefslogtreecommitdiff
path: root/src/lib/collection/schemas.ts
diff options
context:
space:
mode:
authorJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-21 00:37:34 -0300
committerJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-21 00:37:34 -0300
commitc530d30a74bb521b1c22f0e2a468d9b69c6a2e8e (patch)
treec9230fdf28aa8865ac2066450b84009bc9da0168 /src/lib/collection/schemas.ts
parent25375fccfe4477022c0b354c6e1018ff5a07df95 (diff)
feat: blog listing style
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/lib/collection/schemas.ts')
-rw-r--r--src/lib/collection/schemas.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/collection/schemas.ts b/src/lib/collection/schemas.ts
index eca996f..f8a021d 100644
--- a/src/lib/collection/schemas.ts
+++ b/src/lib/collection/schemas.ts
@@ -3,7 +3,14 @@ import { isValidLocale } from "../../utils/lang.ts";
import { get } from "../../utils/anonymous.ts";
import type { CollectionEntry } from "astro:content";
-export const KEYWORDS = ["Portugal", "democracy", "test"] as const;
+export const KEYWORDS = [
+ "Portugal",
+ "democracy",
+ "test",
+ "health",
+ "gym",
+ "diet",
+] as const;
export const KeywordsEnum = z.enum(KEYWORDS);
export const ENTITY_TYPES = ["author", "co-author", "translator"] as const;