import streamlit as st # Custom CSS to mimic the design in the image st.markdown(""" """, unsafe_allow_html=True) # Top bar layout st.markdown("""
Brand Bot
""", unsafe_allow_html=True) # Mimic a sidebar with a custom layout inside the main body st.markdown('
', unsafe_allow_html=True) # Creating a custom sidebar sidebar_col, main_col = st.columns([1, 5], gap="small") with sidebar_col: st.markdown("## Sidebar") st.text("This is some text before the New Chat button.") if st.button("New Chat", key="new_chat"): # Your button click handling here pass with main_col: # Main page layout st.markdown('

Hello!

', unsafe_allow_html=True) st.markdown('

I\'m Brand Bot, an internal chatbot that provides you with fast, reliable information about the Mastercard brand. How can I help you today?

', unsafe_allow_html=True) # Example requests and the rest of your main content # ... st.markdown('
', unsafe_allow_html=True) # End of main-body div