Nol00 commited on
Commit
2dec2f2
·
verified ·
1 Parent(s): 0c71ade

Create streamlit_app.py

Browse files
Files changed (1) hide show
  1. 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()