Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -54,11 +54,16 @@ examples = [
|
|
| 54 |
"Imagine steve jobs as Star Wars movie character"
|
| 55 |
]
|
| 56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
# --- Gradio UI ---
|
| 58 |
-
with gr.Blocks() as demo:
|
| 59 |
with gr.Column(elem_id="app-container"):
|
| 60 |
-
gr.Markdown("# 🎨 Realtime FLUX Image Generator")
|
| 61 |
-
gr.Markdown("Generate stunning images in real-time with advanced AI technology.")
|
| 62 |
|
| 63 |
with gr.Row():
|
| 64 |
with gr.Column(scale=3):
|
|
|
|
| 54 |
"Imagine steve jobs as Star Wars movie character"
|
| 55 |
]
|
| 56 |
|
| 57 |
+
css = """
|
| 58 |
+
footer {
|
| 59 |
+
visibility: hidden;
|
| 60 |
+
}
|
| 61 |
+
"""
|
| 62 |
+
|
| 63 |
+
|
| 64 |
# --- Gradio UI ---
|
| 65 |
+
with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
|
| 66 |
with gr.Column(elem_id="app-container"):
|
|
|
|
|
|
|
| 67 |
|
| 68 |
with gr.Row():
|
| 69 |
with gr.Column(scale=3):
|