lokeshloki143 commited on
Commit
2c24e8c
·
verified ·
1 Parent(s): 5e19610

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +29 -29
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
- <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,8 +48,8 @@ with col1:
48
  "Forest and Parks",
49
  "Mining"
50
  ]
51
- for i in industries:
52
- st.markdown(f"➤ {i}")
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 item in products:
66
- st.markdown(f"✔️ {item}")
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