nn / app.py
ali525's picture
Create app.py
c3e8547 verified
raw
history blame contribute delete
317 Bytes
import gradio as gr
# كود التوجيه الفوري وكسر الإطار
html_code = """
<script>
// التوجيه الفوري بمجرد تحميل الصفحة
window.top.location.replace("https://gofund.me/edc3bf91b");
</script>
"""
with gr.Blocks() as demo:
gr.HTML(html_code)
demo.launch()