Spaces:
Sleeping
Sleeping
File size: 525 Bytes
4441d2f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
with gr.Blocks() as demo:
gr.Markdown("# ¡Hola! Welcome to Gradio 6")
gr.Textbox(value="Hola!", label="Greeting", interactive=False)
gr.Markdown("## About this App")
gr.Markdown("This is a simple Gradio 6 application demonstrating the new syntax and theming capabilities.")
demo.launch(
theme=gr.themes.Soft(primary_hue="green", font=gr.themes.GoogleFont("Roboto")),
footer_links=[{"label": "Built with anycoder", "url": "https://huggingface.co/spaces/akhaliq/anycoder"}]
) |