Create page2.py
Browse files
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)
|