Update app.py
Browse files
app.py
CHANGED
|
@@ -30,6 +30,17 @@ if page == "Home":
|
|
| 30 |
else:
|
| 31 |
# Home page - before access to developer page
|
| 32 |
st.image("sebastian-unrau-sp-p7uuT0tw-unsplash.jpg", use_column_width=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
st.title("Hi! Welcome to the NBS Project Submission Platform")
|
| 34 |
st.write("Please use the sidebar to navigate between options.")
|
| 35 |
|
|
|
|
| 30 |
else:
|
| 31 |
# Home page - before access to developer page
|
| 32 |
st.image("sebastian-unrau-sp-p7uuT0tw-unsplash.jpg", use_column_width=True)
|
| 33 |
+
st.markdown(
|
| 34 |
+
"""
|
| 35 |
+
<style>
|
| 36 |
+
.full-width-image {
|
| 37 |
+
width: 100%;
|
| 38 |
+
height: auto;
|
| 39 |
+
}
|
| 40 |
+
</style>
|
| 41 |
+
""",
|
| 42 |
+
unsafe_allow_html=True,
|
| 43 |
+
)
|
| 44 |
st.title("Hi! Welcome to the NBS Project Submission Platform")
|
| 45 |
st.write("Please use the sidebar to navigate between options.")
|
| 46 |
|