reyrove's picture
Update app.py
ee96034 verified
raw
history blame contribute delete
504 Bytes
import gradio as gr
with gr.Blocks(theme=gr.themes.Soft(), css="footer {visibility: hidden}") as demo:
gr.Markdown("""
# Baby Hawk Mantra Generator
*"May your journey be blessed with creativity and light!..."*
""")
gr.HTML(f"""
<iframe
src="https://baby-hawk-mantra-generator.vercel.app/"
width="100%"
height="700px"
frameborder="0"
style="border-radius: 12px; box-shadow: 0 0 20px #ff00ff80;"
></iframe>
""")
demo.launch()