import gradio as gr # HTML content for the landing page (body content only) html_content = """

Olá!

Bem-vindo a uma experiência incrível

🎨

Design Moderno

Interface belamente projetada com as últimas tendências

Super Rápido

Performance otimizada para a melhor experiência

🎯

Focado em Você

Construído com atenção aos mínimos detalhes

""" # JavaScript to inject fonts head_content = """ """ # Create the Gradio app with gr.Blocks() as demo: gr.HTML(html_content) # Launch with theme and custom head demo.launch( theme=gr.themes.Soft(), head=head_content, footer_links=[ {"label": "Built with anycoder", "url": "https://huggingface.co/spaces/akhaliq/anycoder"} ] )