Why there is no way to improve the looks of the sidebar with a multipage app?

For the logo you can check this thread.

One option is to use external lib streamlit-extras.

"""Page with logo in the sidebar.

Logo dependency:
    pip install streamlit-extras
"""

import streamlit as st
from streamlit_extras.app_logo import add_logo

# image has 200x200 pixels size
add_logo("./assets/images/logo.png", height=200)