techfreakworm commited on
Commit
0e7a9cf
·
unverified ·
1 Parent(s): af844a1

chore(ui): display brand as 'Z-Image Studio' (title-case) in header + browser tab

Browse files

Repo / directory / Python package stay kebab-case z-image-studio. Only the
user-facing brand mark and gr.Blocks title= switch to title-case.

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -228,7 +228,7 @@ def on_upscale_generate(
228
  HEADER_HTML = """
229
  <div style="display:flex;justify-content:space-between;align-items:baseline;padding:8px 0 4px 0;">
230
  <div style="font-size:16px;font-weight:600;letter-spacing:-0.01em;">
231
- z-image-studio<span class="zis-brand-period">.</span>
232
  </div>
233
  <div class="zis-status-dot" style="font-size:11px;color:#988B7C;letter-spacing:0.02em;">ready</div>
234
  </div>
@@ -236,7 +236,7 @@ HEADER_HTML = """
236
 
237
 
238
  def build_app() -> gr.Blocks:
239
- with gr.Blocks(theme=theme.build_theme(), css=theme.CSS, title="z-image-studio") as demo:
240
  gr.HTML(HEADER_HTML)
241
 
242
  with gr.Tabs():
 
228
  HEADER_HTML = """
229
  <div style="display:flex;justify-content:space-between;align-items:baseline;padding:8px 0 4px 0;">
230
  <div style="font-size:16px;font-weight:600;letter-spacing:-0.01em;">
231
+ Z-Image Studio<span class="zis-brand-period">.</span>
232
  </div>
233
  <div class="zis-status-dot" style="font-size:11px;color:#988B7C;letter-spacing:0.02em;">ready</div>
234
  </div>
 
236
 
237
 
238
  def build_app() -> gr.Blocks:
239
+ with gr.Blocks(theme=theme.build_theme(), css=theme.CSS, title="Z-Image Studio") as demo:
240
  gr.HTML(HEADER_HTML)
241
 
242
  with gr.Tabs():