""" Metabolizer CMS - SecuBox Blog Management Main entry point with navigation sidebar """ import streamlit as st st.set_page_config( page_title="Metabolizer CMS", page_icon="📝", layout="wide", initial_sidebar_state="expanded" ) # Cyberpunk styling st.markdown(""" """, unsafe_allow_html=True) # Header st.title("📝 METABOLIZER CMS") st.markdown("### Neural Blog Matrix for SecuBox") # Quick stats in columns col1, col2, col3, col4 = st.columns(4) with col1: st.metric("Status", "ONLINE", delta="Active") with col2: st.metric("Posts", "0", delta=None) with col3: st.metric("Drafts", "0", delta=None) with col4: st.metric("Pipeline", "Ready") st.divider() # Navigation info st.info(""" **Navigation:** Use the sidebar to access different sections: - **Editor** - Create and edit blog posts with live preview - **Posts** - Manage published posts - **Media** - Upload and manage images - **Settings** - Configure Git and Hexo integration """) # Quick actions - simplified without switch_page st.subheader("Quick Actions") st.markdown(""" Use the **sidebar** on the left to navigate to: - 📝 **1_editor** - Write new posts - 📚 **2_posts** - Manage posts - 🖼️ **3_media** - Media library - ⚙️ **4_settings** - Settings """) # Footer st.divider() st.caption("Metabolizer CMS v1.0 | SecuBox Blog Pipeline")