import streamlit as st
import streamlit.components.v1 as components
# Title text
title_text = "
Welcome to IPL Buddy...
"
st.markdown(title_text, unsafe_allow_html=True)
# Caution text
caution_text = """
N.B: The production server and the backend database are running on free tiers. So, it may take some time or a few multiple tries to get reply. Sorry for the inconvenience..🙂
"""
st.markdown(caution_text, unsafe_allow_html=True)
# Chatbot integration
dialogflow_bot = """
"""
components.html(dialogflow_bot, height=680)