File size: 965 Bytes
d44d959
 
2aee8ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d44d959
 
 
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
import gradio as gr

with gr.Blocks(theme='soft', css="""
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .center-text {
        text-align: center;
        color: white;
    }
    .center-text h1 {
        font-size: 4rem;
        font-weight: 900;
        margin-bottom: 1rem;
    }
    .center-text p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .center-text a {
        color: #a855f7;
        text-decoration: underline;
        font-size: 1.5rem;
    }
""") as demo:
    gr.HTML("""
        <div class="center-text">
            <h1>Development Paused</h1>
            <p>We've paused development on this demo to focus on our main open-source release of Pluto1.</p>
            <p>Please visit <a href="https://plutovid.com" target="_blank">plutovid.com</a> for the latest updates.</p>
        </div>
    """)

if __name__ == "__main__":
    demo.launch()