Spaces:
Running
Running
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# app.py
|
| 2 |
+
import gradio as gr
|
| 3 |
+
|
| 4 |
+
with gr.Blocks(theme=gr.themes.Base(), css="body { background-color: #0f0f0f; }") as app:
|
| 5 |
+
with gr.Column(elem_id="centered-content"):
|
| 6 |
+
gr.Markdown("""
|
| 7 |
+
## OptionStrat Flow
|
| 8 |
+
<a href="https://optionstrat.com/flow" target="_blank" style="
|
| 9 |
+
display: inline-block;
|
| 10 |
+
background-color: #007bff;
|
| 11 |
+
color: white;
|
| 12 |
+
padding: 12px 24px;
|
| 13 |
+
text-decoration: none;
|
| 14 |
+
border-radius: 6px;
|
| 15 |
+
font-size: 16px;
|
| 16 |
+
">Truy cập Option Flow</a>
|
| 17 |
+
""")
|
| 18 |
+
app.launch()
|