summaryrefslogtreecommitdiff
path: root/src/lib/collection/schemas.ts
diff options
context:
space:
mode:
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;