File size: 939 Bytes
979b9ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
35
# -*- coding: utf-8 -*-
"""
Created on Thu Mar 30 08:44:14 2023

@author: mritchey
"""
# streamlit run "C:\Users\mritchey\.spyder-py3\Python Scripts\streamlit projects\multipage_app\Homepage.py"
import streamlit as st

st.set_page_config(
    page_title="Multipage App",
    # page_icon="👋",
)   



st.title("Select A Page in Upper Left")
st.header("Hail")
# url_hail='https://mattritchey-multipage.hf.space/Hail'
# link = f'[Hail]({url_hail})'
# st.markdown(link, unsafe_allow_html=True)

st.header("Hail Plus")
st.header("Wind (High Resolution): RTMA")
st.header("Wind (Low Resolution): ERA")
st.sidebar.success("Select a page above.")

# if "my_input" not in st.session_state:
#     st.session_state["my_input"] = ""

# my_input = st.text_input("Input a text here", st.session_state["my_input"])
# submit = st.button("Submit")
# if submit:
#     st.session_state["my_input"] = my_input
#     st.write("You have entered: ", my_input)