feat: add SVG logo and update UI layout
Browse files- .gitignore +1 -0
- assets/logo.svg +29 -0
- 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/
|
| 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.")
|