Create streamlit_app.py
Browse files- crs_arena/streamlit_app.py +14 -0
crs_arena/streamlit_app.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""Streamlit app for the CRS Arena project."""
|
2 |
+
|
3 |
+
import streamlit as st
|
4 |
+
|
5 |
+
# Streamlit app
|
6 |
+
st.set_page_config(page_title="CRS Arena", layout="wide")
|
7 |
+
|
8 |
+
arena_page = st.Page("arena.py", title="CRS Arena", icon="🔫")
|
9 |
+
leaderboard_page = st.Page(
|
10 |
+
"leaderboard.py", title="CRS Arena Leaderboard", icon="🏆"
|
11 |
+
)
|
12 |
+
|
13 |
+
pg = st.navigation([arena_page, leaderboard_page])
|
14 |
+
pg.run()
|