|
|
import streamlit as st
|
|
|
|
|
|
|
|
|
st.html(
|
|
|
'''
|
|
|
<style>
|
|
|
.stMainBlockContainer{
|
|
|
background-color:#32322F;
|
|
|
}
|
|
|
.stMain{
|
|
|
background-color:#2C2B28;
|
|
|
}
|
|
|
.stAppHeader{
|
|
|
background-color:#29253E;
|
|
|
}
|
|
|
h1{
|
|
|
color:Gray;
|
|
|
}
|
|
|
hr {
|
|
|
border-color: green;
|
|
|
}
|
|
|
p,li{
|
|
|
color:;
|
|
|
}
|
|
|
h3,h2{
|
|
|
color:#D97757;
|
|
|
}
|
|
|
</style>
|
|
|
'''
|
|
|
)
|
|
|
|
|
|
Home=st.Page(
|
|
|
page="Pages/Welcome.py",
|
|
|
title="Home",
|
|
|
icon="π "
|
|
|
)
|
|
|
baymax=st.Page(
|
|
|
page="Pages/Baymax.py",
|
|
|
title="Baymax A.I.",
|
|
|
icon="π€"
|
|
|
)
|
|
|
Symptom_Checker=st.Page(
|
|
|
page="Pages/Symptom Checker.py",
|
|
|
title="Symptom checker",
|
|
|
icon="βοΈ"
|
|
|
)
|
|
|
History=st.Page(
|
|
|
page="Pages/History.py",
|
|
|
title="History",
|
|
|
icon="π"
|
|
|
)
|
|
|
About=st.Page(
|
|
|
page="Pages/About.py",
|
|
|
title="About",
|
|
|
icon="π§ "
|
|
|
)
|
|
|
Socials=st.Page(
|
|
|
page="Pages/Socials.py",
|
|
|
title="Socials",
|
|
|
icon="π"
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
st.sidebar.link_button("Buy me a coffee","https://buymeacoffee.com/sandesh13fr",icon="β",)
|
|
|
pages=st.navigation([Home,baymax,Symptom_Checker,History,About,Socials])
|
|
|
pages.run() |