moazzamdev commited on
Commit
9c8799c
·
verified ·
1 Parent(s): 8efe822

Create page2.py

Browse files
Files changed (1) hide show
  1. page2.py +26 -0
page2.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from langchain_core.messages import HumanMessage
3
+
4
+ st.set_page_config(page_title="Coming Soon", page_icon="⏳", layout="centered")
5
+ # Streamlit app
6
+ def image():
7
+
8
+
9
+ # Custom Styling
10
+ st.markdown(
11
+ """
12
+ <style>
13
+ .center-text {
14
+ text-align: center;
15
+ font-size: 36px;
16
+ font-weight: bold;
17
+ color: #FF6F61;
18
+ margin-top: 20%;
19
+ }
20
+ </style>
21
+ """,
22
+ unsafe_allow_html=True,
23
+ )
24
+
25
+ # Display Message
26
+ st.markdown('<p class="center-text">🚀 Coming Soon... Stay Tuned! ⏳</p>', unsafe_allow_html=True)