topguy commited on
Commit
6a5d3c3
·
1 Parent(s): d8d0240

feat: add SVG logo and update UI layout

Browse files
Files changed (3) hide show
  1. .gitignore +1 -0
  2. assets/logo.svg +29 -0
  3. modules/ui_layout.py +1 -1
.gitignore CHANGED
@@ -14,6 +14,7 @@ temp_character_*.json
14
 
15
  # Generated images (if they should be ignored)
16
  *.png
 
17
  !comfy_workflow_visual.png # Exception example if needed
18
 
19
  # OS generated files
 
14
 
15
  # Generated images (if they should be ignored)
16
  *.png
17
+ !assets/
18
  !comfy_workflow_visual.png # Exception example if needed
19
 
20
  # OS generated files
assets/logo.svg ADDED
modules/ui_layout.py CHANGED
@@ -12,7 +12,7 @@ from .name_generator import generate_fantasy_name
12
  def build_ui():
13
  with gr.Blocks(title="Chronicle Portrait Studio") as demo:
14
  with gr.Row(variant="compact"):
15
- gr.Image("assets/header_background.png", show_label=False, container=False, interactive=False, height=120)
16
 
17
  gr.Markdown("# ⚔️ Chronicle Portrait Studio")
18
  gr.Markdown("Craft legendary AI-powered portraits for your RPG adventures.")
 
12
  def build_ui():
13
  with gr.Blocks(title="Chronicle Portrait Studio") as demo:
14
  with gr.Row(variant="compact"):
15
+ gr.Image("assets/logo.svg", show_label=False, container=False, interactive=False, height=120)
16
 
17
  gr.Markdown("# ⚔️ Chronicle Portrait Studio")
18
  gr.Markdown("Craft legendary AI-powered portraits for your RPG adventures.")