HuggingFaceDAO / app.py
HuggingFaceDAO's picture
Update app.py
bf6d3ff verified
raw
history blame contribute delete
396 Bytes
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()