Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,19 +1,19 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
st.set_page_config(layout="wide")
|
| 4 |
-
st.markdown("<h1 style='text-align: center;'>
|
| 5 |
|
| 6 |
-
def
|
| 7 |
-
return st.markdown(f"<
|
| 8 |
|
| 9 |
# First row with three text components
|
| 10 |
col1, col2, col3 = st.columns(3)
|
| 11 |
with col1:
|
| 12 |
-
|
| 13 |
with col2:
|
| 14 |
-
|
| 15 |
with col3:
|
| 16 |
-
|
| 17 |
|
| 18 |
# Second row with three file upload buttons
|
| 19 |
upload_col1, upload_col2, upload_col3 = st.columns(3)
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
st.set_page_config(layout="wide")
|
| 4 |
+
st.markdown("<h1 style='text-align: center;'>حسن xxx دحوم</h1>", unsafe_allow_html=True)
|
| 5 |
|
| 6 |
+
def header(text,h='h2'):
|
| 7 |
+
return st.markdown(f"<{h} style='text-align: center;'>{text}</{h}>", unsafe_allow_html=True)
|
| 8 |
|
| 9 |
# First row with three text components
|
| 10 |
col1, col2, col3 = st.columns(3)
|
| 11 |
with col1:
|
| 12 |
+
header('Premiums','h3')
|
| 13 |
with col2:
|
| 14 |
+
header("Incurred Claims & Recoveries Data",'h3')
|
| 15 |
with col3:
|
| 16 |
+
header("Claims Count",'h3')
|
| 17 |
|
| 18 |
# Second row with three file upload buttons
|
| 19 |
upload_col1, upload_col2, upload_col3 = st.columns(3)
|