-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHome.py
20 lines (15 loc) · 988 Bytes
/
Home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#Imports
import streamlit as st
import matplotlib as mpl
# use the non-interactive Agg backend to be more thread safe
mpl.use("agg")
# Title the app
st.title('A-Level Transit Method: The Transit Trail!')
st.write("# Welcome to The Transit Trail!")
st.video('Images/planet_orbit_animation.mp4')
st.write('You have been tasked with finding habitable exoplanets to find potential signs of life on other planets!')
st.write('However, before you can find E.T., you have to learn what to look for and how!')
st.write('This is where this workshop comes in! You will complete missions and levels to become a planet hunter in no time!')
st.write('On your journey, you will encounter levels, missions, different terrains and chances of rain! These will announce which levels are harder than others, so take care out in the rainy and rocky terrains!')
st.write('Are you ready to start your journey? If so, select a level from the sidebar to start!')
st.sidebar.success("Select a level above.")