Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -113,8 +113,20 @@ custom_css = """
|
|
113 |
#wave_plot canvas {width: 100% !important; height: auto !important;}
|
114 |
"""
|
115 |
|
116 |
-
with gr.Blocks(css=custom_css, theme=
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
|
119 |
chart_summary_state = gr.State(value="No chart yet.")
|
120 |
|
|
|
113 |
#wave_plot canvas {width: 100% !important; height: auto !important;}
|
114 |
"""
|
115 |
|
116 |
+
with gr.Blocks(css=custom_css, theme="apriel") as demo:
|
117 |
+
# โโ NEW: ์๋น์ค ์ ๋ชฉ โโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
118 |
+
gr.Markdown("## ๐ **TriPulse Navigator**", elem_id="service_title")
|
119 |
+
|
120 |
+
# โโ NEW: ๊ฐ๋จ ์ค๋ช
โโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
121 |
+
gr.Markdown(
|
122 |
+
"""
|
123 |
+
**Tech Cycle (50 yr)** โ Innovation booms and busts every half-century.
|
124 |
+
**Finance Cycle (80 yr)** โ Credit expansions and crises roughly once in a lifetime.
|
125 |
+
**Hegemony Cycle (250 yr)** โ Rise & decline of world-leading powers over two-and-a-half centuries.
|
126 |
+
""",
|
127 |
+
elem_id="cycle_descriptions",
|
128 |
+
)
|
129 |
+
|
130 |
|
131 |
chart_summary_state = gr.State(value="No chart yet.")
|
132 |
|