File size: 658 Bytes
9c8799c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import streamlit as st
from langchain_core.messages import HumanMessage

st.set_page_config(page_title="Coming Soon", page_icon="⏳", layout="centered")
# Streamlit app
def image():


    # Custom Styling
    st.markdown(
        """
        <style>
            .center-text {
                text-align: center;
                font-size: 36px;
                font-weight: bold;
                color: #FF6F61;
                margin-top: 20%;
            }
        </style>
        """,
        unsafe_allow_html=True,
    )

    # Display Message
    st.markdown('<p class="center-text">πŸš€ Coming Soon... Stay Tuned! ⏳</p>', unsafe_allow_html=True)