changed blog tags to string enum; added blog post entry gallery

This commit is contained in:
2026-03-31 12:56:57 +02:00
parent 159ba59500
commit 61875ab08e
3 changed files with 42 additions and 21 deletions

View File

@@ -24,10 +24,10 @@ export interface BlogPostLink {
}
export enum BlogPostTag {
ART, // ramblings to do with art
DRAWING, // self-explanatory
TECH_TIP, // tech guides
META, // about the website itself
ART = "art-stuff", // ramblings to do with art
DRAWING = "drawing", // self-explanatory
TECH_TIP = "tech-tip", // tech guides
META = "natconf-meta", // about the website itself
}