Spaces:
Sleeping
Sleeping
Yazhou Cao
commited on
Commit
·
2c6e8dc
1
Parent(s):
ec40aff
Add a header
Browse files
app.py
CHANGED
@@ -21,8 +21,12 @@ _FLOP = "flop"
|
|
21 |
|
22 |
|
23 |
def main():
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
tab1, tab2 = st.tabs(["Your hand", "Flop"])
|
27 |
with tab1:
|
28 |
image_file_hand = st.file_uploader("Your hand")
|
|
|
21 |
|
22 |
|
23 |
def main():
|
24 |
+
st.markdown("""
|
25 |
+
<h3 align="center">Holdem Odds Calculator</h3>
|
26 |
+
<p align="center">
|
27 |
+
<img width="100" height="100" src="https://github.com/landing-ai/landingai-python/raw/main/assets/avi-logo.png">
|
28 |
+
</p>
|
29 |
+
""", unsafe_allow_html=True)
|
30 |
tab1, tab2 = st.tabs(["Your hand", "Flop"])
|
31 |
with tab1:
|
32 |
image_file_hand = st.file_uploader("Your hand")
|