| 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() |