File size: 490 Bytes
f51b958
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st
from PIL import Image


def app():
    # Sidebar
    st.sidebar.title('Check Coherence')
    st.sidebar.write(' ')
    st.sidebar.selectbox('Select NDC', ('South Africa', 'Ethiopia'))

    # Container
    c1, c2, c3 = st.columns([1, 7, 1])
    c2.markdown("<h1 style='text-align: center; color: black;'>SDSN X GIZ Policy Tracing</h1>", unsafe_allow_html=True)
    c1, c2, c3 = st.columns([1.8, 7, 1])
    image = Image.open('pic1.PNG')
    c2.image(image, width=1000)