Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -45,8 +45,9 @@ st.markdown("""
|
|
| 45 |
# 3. Header / Top Banner Section
|
| 46 |
with st.container():
|
| 47 |
# Removed "spec=" keyword completely to prevent syntax parser crashes
|
| 48 |
-
|
| 49 |
-
|
|
|
|
| 50 |
st.title("⚡ Pristine Isolated Deployment")
|
| 51 |
st.markdown(
|
| 52 |
"<p style='color: #6c757d; font-size: 1.1rem; margin-top: -10px;'> "
|
|
@@ -54,9 +55,9 @@ with st.container():
|
|
| 54 |
"</p>",
|
| 55 |
unsafe_allow_html=True
|
| 56 |
)
|
| 57 |
-
|
| 58 |
st.markdown("<div style='text-align: right; margin-top: 25px;'>", unsafe_allow_html=True)
|
| 59 |
-
st.markdown('<span class="status-badge">● System Synchronized</span>',
|
| 60 |
st.markdown(f"<p style='color: #6c757d; font-size: 0.8rem; margin-top: 5px;'>Checked: {datetime.now().strftime('%H:%M:%S UTC')}</p>", unsafe_allow_html=True)
|
| 61 |
st.markdown("</div>", unsafe_allow_html=True)
|
| 62 |
|
|
|
|
| 45 |
# 3. Header / Top Banner Section
|
| 46 |
with st.container():
|
| 47 |
# Removed "spec=" keyword completely to prevent syntax parser crashes
|
| 48 |
+
col_title, col_status = st.columns(2)
|
| 49 |
+
|
| 50 |
+
with col_title:
|
| 51 |
st.title("⚡ Pristine Isolated Deployment")
|
| 52 |
st.markdown(
|
| 53 |
"<p style='color: #6c757d; font-size: 1.1rem; margin-top: -10px;'> "
|
|
|
|
| 55 |
"</p>",
|
| 56 |
unsafe_allow_html=True
|
| 57 |
)
|
| 58 |
+
with col_status:
|
| 59 |
st.markdown("<div style='text-align: right; margin-top: 25px;'>", unsafe_allow_html=True)
|
| 60 |
+
st.markdown('<span class="status-badge">● System Synchronized</span>', unsafe_allow_html=True) if hasattr(st, "status") else st.markdown('<span class="status-badge">● System Synchronized</span>', unsafe_allow_html=True)
|
| 61 |
st.markdown(f"<p style='color: #6c757d; font-size: 0.8rem; margin-top: 5px;'>Checked: {datetime.now().strftime('%H:%M:%S UTC')}</p>", unsafe_allow_html=True)
|
| 62 |
st.markdown("</div>", unsafe_allow_html=True)
|
| 63 |
|