nick5363 commited on
Commit
c7418d2
·
verified ·
1 Parent(s): 27aacf4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
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()