From d38947d3165733bb7cdf1e07cf44fb9ee9319c89 Mon Sep 17 00:00:00 2001 From: Matthias Puchstein Date: Wed, 16 Jul 2025 21:15:52 +0200 Subject: [PATCH] added dynamic tags display to `DreamPage` for improved visualization and categorization of dream data Signed-off-by: Matthias Puchstein --- src/pages/DreamPage.tsx | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/pages/DreamPage.tsx b/src/pages/DreamPage.tsx index fd5931d..39df153 100644 --- a/src/pages/DreamPage.tsx +++ b/src/pages/DreamPage.tsx @@ -183,7 +183,22 @@ export default function DreamPage() { Datum {formatDateNumeric(dream.date)} - + + +
+ Tags +
+ {dream.tags.map((tag, index) => ( + + {tag} + + ))} +