added dynamic tags display to DreamPage for improved visualization and categorization of dream data

Signed-off-by: Matthias Puchstein <matthias@puchstein.bayern>
This commit is contained in:
2025-07-16 21:15:52 +02:00
parent 33f68a7e49
commit d38947d316

View File

@@ -183,7 +183,22 @@ export default function DreamPage() {
<span className="font-medium mb-1 sm:mb-0">Datum</span>
<span>
{formatDateNumeric(dream.date)}
</span>
</span>
</div>
<div className="flex flex-col sm:flex-row sm:justify-between">
<span className="font-medium mb-1 sm:mb-0">Tags</span>
<div className="flex flex-wrap gap-2">
{dream.tags.map((tag, index) => (
<span key={index} className="px-2 py-1 text-xs rounded-full"
style={{
background: 'var(--accent-gradient)',
color: 'white',
boxShadow: '0 2px 5px var(--shadow)'
}}>
{tag}
</span>
))}
</div>
</div>
</div>
</div>