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"}] )