diff options
| author | Tyler <tyler@tylerhoang.xyz> | 2026-03-29 12:00:41 -0700 |
|---|---|---|
| committer | Tyler <tyler@tylerhoang.xyz> | 2026-03-29 12:00:41 -0700 |
| commit | 239eb45c0ce76ba8faf9f9bb9234d878e7ecf756 (patch) | |
| tree | 5ee75a59f86d507d93a9240069ab309e98a86b78 | |
| parent | cc4238cc6830d24b05a09d9b538961965eecba94 (diff) | |
Add Prism logo to sidebar
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | app.py | 8 | ||||
| -rw-r--r-- | assets/logo.png | bin | 0 -> 458136 bytes |
3 files changed, 9 insertions, 3 deletions
@@ -3,7 +3,9 @@ __pycache__/ *.pyc *.pyo -*.png *.jpg *.jpeg +# Allow assets directory +!assets/ +!assets/* .claude/ @@ -70,8 +70,12 @@ if "ticker" not in st.session_state: # ── Sidebar ────────────────────────────────────────────────────────────────── with st.sidebar: - st.markdown("### 🔷 Prism") - st.caption("Financial Analysis Dashboard") + col_logo, col_title = st.columns([1, 2]) + with col_logo: + st.image("assets/logo.png", width=60) + with col_title: + st.markdown("### Prism") + st.caption("Financial Analysis Dashboard") st.divider() with st.form("ticker_search_form", clear_on_submit=False): diff --git a/assets/logo.png b/assets/logo.png Binary files differnew file mode 100644 index 0000000..1305c3e --- /dev/null +++ b/assets/logo.png |
