File size: 407 Bytes
1bbbd4e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# === Home.py (Main file) ===

import streamlit as st

st.set_page_config(
    page_title="Home",
    page_icon="🏠"
)

st.title("📖 Welcome to Blog Creation")
st.subheader("Select a page from the sidebar to start generating your blog.")


# Add a visual divider
st.markdown("---")

# Engaging CTA Section
st.success("✨ Get started by selecting an option from the sidebar!")