Spaces:
Runtime error
Runtime error
import streamlit as st | |
from streamlit_mermaid import mermaid | |
st.set_page_config(page_title="8 Dimensions of Self Care", page_icon=":heart:") | |
st.title("8 Dimensions of Self Care") | |
mermaid_chart = ''' | |
graph TD | |
A[๐ฑ Emotional, How we feel] --> B[๐ฎ Self Care] | |
C[๐ Spiritual, Our beliefs] --> B | |
D[๐ฐ Financial, How we manage money] --> B | |
E[๐ก Cognitive, How we think] --> B | |
F[๐ฏ Aptitudinal, Our abilities] --> B | |
G[๐ค Relational, Our connections] --> B | |
H[๐ Environmental, Our surroundings] --> B | |
I[๐โโ๏ธ Physical, Our bodies] --> B | |
''' | |
mermaid(mermaid_chart, width="100%") | |