feat: remove themes

This commit is contained in:
Barrett Ruth 2026-01-07 13:43:40 -06:00
parent 1d2f556b32
commit 142d0876a6
6 changed files with 2 additions and 99 deletions

View file

@ -6,9 +6,8 @@ export type CollectionKey =
| "meditations"
| "autonomous-racing"
| "git"
| "gists"
| "death";
export type PostCollection = Exclude<CollectionKey, "git" | "gists">;
export type PostCollection = Exclude<CollectionKey, "git">;
export type AnyCollectionEntry =
| CollectionEntry<"algorithms">
@ -16,5 +15,4 @@ export type AnyCollectionEntry =
| CollectionEntry<"meditations">
| CollectionEntry<"autonomous-racing">
| CollectionEntry<"death">
| CollectionEntry<"git">
| CollectionEntry<"gists">;
| CollectionEntry<"git">;