Spaces:
Runtime error
Runtime error
Edit logo
Browse files- app.py +2 -2
- static/logo.png +0 -0
app.py
CHANGED
@@ -8,10 +8,10 @@ PAGES = {
|
|
8 |
"Corpus Explanation": corpus,
|
9 |
}
|
10 |
|
11 |
-
st.sidebar.title("Explore ferret!")
|
12 |
|
13 |
logo = Image.open("static/logo.png")
|
14 |
-
st.sidebar.image(logo
|
15 |
|
16 |
page = st.sidebar.radio("", list(PAGES.keys()))
|
17 |
PAGES[page].body()
|
|
|
8 |
"Corpus Explanation": corpus,
|
9 |
}
|
10 |
|
11 |
+
# st.sidebar.title("Explore ferret!")
|
12 |
|
13 |
logo = Image.open("static/logo.png")
|
14 |
+
st.sidebar.image(logo)
|
15 |
|
16 |
page = st.sidebar.radio("", list(PAGES.keys()))
|
17 |
PAGES[page].body()
|
static/logo.png
CHANGED