File size: 787 Bytes
6adba8e
 
597e85f
7354a40
 
 
597e85f
7354a40
 
 
 
1a891f4
7354a40
1a891f4
 
597e85f
1a891f4
b4621d7
1a891f4
5898c8c
597e85f
5898c8c
597e85f
5898c8c
7354a40
082c87f
b4621d7
 
597e85f
b4621d7
597e85f
7354a40
597e85f
d36546b
b4621d7
 
 
6adba8e
dca90e8
1
2
3
4
5
6
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
33
34
35
36
37
38
39
import gradio as gr

css = """
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #111;
}
#main-area {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.button-link {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    margin-top: 20px;
}
"""

with gr.Blocks(css=css) as app:
    gr.HTML("""
    <div id="main-area">
        <h1 style="margin-bottom: 10px;">OptionStrat Flow</h1>
        <a class="button-link" href="https://optionstrat.com/flow" target="_blank" rel="noopener noreferrer">
            Enter Option Flow
        </a>
    </div>
    """)

app.launch()