Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
with gr.Blocks(theme=gr.themes.Soft(), css="footer {visibility: hidden}") as demo:
|
| 4 |
+
gr.Markdown("""
|
| 5 |
+
# Baby Hawk Mantra Generator
|
| 6 |
+
*"May your journey be blessed with creativity and light!..."*
|
| 7 |
+
""")
|
| 8 |
+
gr.HTML(f"""
|
| 9 |
+
<iframe
|
| 10 |
+
src="https://baby-hawk-mantra-generator.vercel.app/"
|
| 11 |
+
width="100%"
|
| 12 |
+
height="700px"
|
| 13 |
+
frameborder="0"
|
| 14 |
+
style="border-radius: 12px; box-shadow: 0 0 20px #ff00ff80;"
|
| 15 |
+
></iframe>
|
| 16 |
+
""")
|
| 17 |
+
|
| 18 |
+
demo.launch()
|