import gradio as gr with open("index.html", "r", encoding="utf-8") as file: custom_html = file.read() def show_landing(): return custom_html demo = gr.Interface( fn=show_landing, inputs=[], outputs=gr.HTML(), title="HuggingFace DAO | $HFT 🤗", description="The friendliest meme token on the chain. Launching at 1,000 ❤️🦄 Telegram members." ) demo.launch()