| import gradio as gr | |
| with gr.Blocks(theme=gr.themes.Soft(), css="footer {visibility: hidden}") as demo: | |
| gr.Markdown(""" | |
| # 🦅 Sparrow Hawk CodeArt Generator | |
| *"Loading your dose of creative chaos..."* | |
| """) | |
| gr.HTML(f""" | |
| <iframe | |
| src="https://sparrow-hawk-code-art-generator.vercel.app" | |
| width="100%" | |
| height="700px" | |
| frameborder="0" | |
| style="border-radius: 12px; box-shadow: 0 0 20px #ff00ff80;" | |
| ></iframe> | |
| """) | |
| demo.launch() |