Implement firebase
Some checks are pending
Build and Publish Docker Image / build (push) Waiting to run

This commit is contained in:
2026-05-28 15:07:00 -06:00
parent 3947b2c5c3
commit 6fd57ea48d
3 changed files with 74 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
{{- $mood := .Params.mood | default "" -}}
{{- if $mood -}}
{{- $moods := dict
"happy" "😊"
"sad" "😢"
"neutral" "😐"
"excited" "🤩"
"thoughtful" "🤔"
"angry" "😠"
"love" "😍"
"surprised" "😮"
"confused" "😕"
"tired" "😴"
"laughing" "😂"
"cool" "😎"
"crazy" "🤪"
"silly" "😜"
"worried" "😰"
"party" "🥳"
-}}
{{- $emoji := index $moods $mood | default "😐" -}}
<span class="inline-flex items-center gap-1 text-2xl" role="img" aria-label="{{ $mood }} mood">{{ $emoji }}</span>
{{- end -}}