seawolf2357 commited on
Commit
dbc482d
1 Parent(s): 2e9251d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -61,9 +61,16 @@ examples = [
61
  "A stylish young woman with long, wavy ombre hair and winged eyeliner, posing in front of a neon-lit city skyline at night. She’s wearing a sleek black leather jacket over a sparkly crop top and holding up a holographic business card that says 'Invite' in futuristic font. The card reflects the colorful neon lights, creating a cyberpunk aesthetic.",
62
 
63
  ]
64
-
 
 
 
 
 
 
 
65
  # --- Gradio UI ---
66
- with gr.Blocks() as demo:
67
  with gr.Column(elem_id="app-container"):
68
  gr.Markdown("# 🎨 FLUX 1.1 Pro")
69
 
 
61
  "A stylish young woman with long, wavy ombre hair and winged eyeliner, posing in front of a neon-lit city skyline at night. She’s wearing a sleek black leather jacket over a sparkly crop top and holding up a holographic business card that says 'Invite' in futuristic font. The card reflects the colorful neon lights, creating a cyberpunk aesthetic.",
62
 
63
  ]
64
+
65
+
66
+ css = """
67
+ footer {
68
+ visibility: hidden;
69
+ }
70
+ """
71
+
72
  # --- Gradio UI ---
73
+ with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
74
  with gr.Column(elem_id="app-container"):
75
  gr.Markdown("# 🎨 FLUX 1.1 Pro")
76