File size: 396 Bytes
6e8ca51
 
 
 
 
bf6d3ff
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()