Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,31 +4,31 @@ import time
|
|
| 4 |
st.set_page_config(page_title="TerraFusion Studio", layout="wide")
|
| 5 |
|
| 6 |
st.markdown("""
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
""", unsafe_allow_html=True)
|
| 33 |
|
| 34 |
st.markdown('<div class="header">🛰️ TerraFusion Studio</div>', unsafe_allow_html=True)
|
|
@@ -48,8 +48,8 @@ with col1:
|
|
| 48 |
"Forest and Parks",
|
| 49 |
"Mining"
|
| 50 |
]
|
| 51 |
-
for
|
| 52 |
-
st.markdown(f"➤ {
|
| 53 |
|
| 54 |
with col2:
|
| 55 |
st.markdown('<div class="sub-header">⚙️ Products</div>', unsafe_allow_html=True)
|
|
@@ -62,8 +62,8 @@ with col2:
|
|
| 62 |
"TerraBatch",
|
| 63 |
"Other Products"
|
| 64 |
]
|
| 65 |
-
for
|
| 66 |
-
st.markdown(f"✔️ {
|
| 67 |
|
| 68 |
st.markdown("---")
|
| 69 |
|
|
|
|
| 4 |
st.set_page_config(page_title="TerraFusion Studio", layout="wide")
|
| 5 |
|
| 6 |
st.markdown("""
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
background-color: #0f0f0f;
|
| 10 |
+
color: white;
|
| 11 |
+
font-family: 'Poppins', sans-serif;
|
| 12 |
+
}
|
| 13 |
+
.header {
|
| 14 |
+
color: #00ff88;
|
| 15 |
+
font-weight: bold;
|
| 16 |
+
font-size: 32px;
|
| 17 |
+
margin-bottom: 10px;
|
| 18 |
+
}
|
| 19 |
+
.sub-header {
|
| 20 |
+
color: #00ffaa;
|
| 21 |
+
font-weight: bold;
|
| 22 |
+
font-size: 22px;
|
| 23 |
+
}
|
| 24 |
+
.box {
|
| 25 |
+
background-color: #111;
|
| 26 |
+
padding: 15px;
|
| 27 |
+
border-radius: 10px;
|
| 28 |
+
box-shadow: 0px 0px 10px rgba(0,255,153,0.2);
|
| 29 |
+
margin-top: 10px;
|
| 30 |
+
}
|
| 31 |
+
</style>
|
| 32 |
""", unsafe_allow_html=True)
|
| 33 |
|
| 34 |
st.markdown('<div class="header">🛰️ TerraFusion Studio</div>', unsafe_allow_html=True)
|
|
|
|
| 48 |
"Forest and Parks",
|
| 49 |
"Mining"
|
| 50 |
]
|
| 51 |
+
for industry in industries:
|
| 52 |
+
st.markdown(f"➤ {industry}")
|
| 53 |
|
| 54 |
with col2:
|
| 55 |
st.markdown('<div class="sub-header">⚙️ Products</div>', unsafe_allow_html=True)
|
|
|
|
| 62 |
"TerraBatch",
|
| 63 |
"Other Products"
|
| 64 |
]
|
| 65 |
+
for product in products:
|
| 66 |
+
st.markdown(f"✔️ {product}")
|
| 67 |
|
| 68 |
st.markdown("---")
|
| 69 |
|