Spaces:
Running on Zero
Running on Zero
chore(ui): display brand as 'Z-Image Studio' (title-case) in header + browser tab
Browse filesRepo / directory / Python package stay kebab-case z-image-studio. Only the
user-facing brand mark and gr.Blocks title= switch to title-case.
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 |
-
|
| 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="
|
| 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():
|