awacke1's picture
Create app.py
0a30697
raw
history blame
631 Bytes
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%")