Skip to content

Commit

Permalink
fix: Improve logo resolution
Browse files Browse the repository at this point in the history
Replace pngs with svg
  • Loading branch information
Bklieger committed Aug 21, 2024
1 parent 6e926ca commit fa294cc
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .streamlit/config.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[client]
showSidebarNavigation = false
showSidebarNavigation = false

[theme]
base = "dark"
Binary file removed assets/logo/powered-by-groq-2.png
Binary file not shown.
Binary file removed assets/logo/powered-by-groq.png
Binary file not shown.
1 change: 1 addition & 0 deletions assets/logo/powered-by-groq.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion infinite_bookshelf/ui/components/advanced_form.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def render_advanced_groq_form(on_submit, button_disabled=False, button_text="Gen
help="Generates content for each section of the book",
)
st.markdown("\n")
st.image("assets/logo/powered-by-groq.png", width=150)
st.image("assets/logo/powered-by-groq.svg", width=150)

with st.form("groqform"):
st.info(
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
)

with col2:
st.image("assets/logo/powered-by-groq.png", width=150)
st.image("assets/logo/powered-by-groq.svg", width=150)


def disable():
Expand Down

0 comments on commit fa294cc

Please sign in to comment.