Spaces:
Sleeping
Sleeping
File size: 636 Bytes
d033501 5f37cd7 d033501 62b4495 eb2388c 62b4495 d033501 19b905a d033501 62b4495 d033501 5f37cd7 d033501 5f37cd7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
"""Home page for Streamlit app."""
import streamlit as st
from src.config_parameters import params
# Page configuration
st.set_page_config(layout="wide", page_title=params["browser_title"])
from src.utils import (
add_about,
set_home_page_style,
toggle_menu_button,
)
# If app is deployed hide menu button
toggle_menu_button()
# Create sidebar
add_about()
# Set page style
set_home_page_style()
# Page title
st.markdown("# Home")
# First section
st.markdown("## Introduction")
st.markdown("TODO: new introduction")
# Second section
st.markdown("## How to use the tool")
st.markdown("TODO: new how to use the tool")
|