File size: 575 Bytes
98bb2cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import streamlit as st

# Custom CSS
with open('style.css') as f:  # Change 'styles.css' to 'style.css'
    css = f.read()

st.markdown(f'<style>{css}</style>', unsafe_allow_html=True)

## LOGO and TITLE
## -------------------------------------------------------------------------------------------
# Show the logo and title side by side
col1, col2 = st.columns([1, 4])
with col1:
    st.image("AIEMOTBOT.png", width=100)  # Change 'brainbot.png' to 'AIEMOTBOT.png'
with col2:
    st.title("Error")

st.error("Oops - Something went wrong! Please try again.")