import streamlit as st

# Set up the main page configuration
st.set_page_config(
    page_title="Dotcomhunters AI Pentesting",
    page_icon="🚀",
    layout="centered",
    initial_sidebar_state="auto",
)

# Title and description
st.title("Dotcomhunters 🚀")
st.subheader("AI-powered Pentesting and Cybersecurity Solutions")
st.write(
    """
    **Dotcomhunters** is a forward-thinking cybersecurity organization focused on AI-driven penetration testing, 
    threat analysis, and digital defense solutions. We empower the community with open-source tools for identifying 
    and securing vulnerabilities.
    """
)

# Add a sidebar
st.sidebar.title("Navigation")
options = st.sidebar.selectbox(
    "Choose a section",
    ("Home", "Projects", "Vision", "Contact")
)

# Home section
if options == "Home":
    st.header("Welcome to Dotcomhunters")
    st.write(
        """
        At **Dotcomhunters**, we believe in combining artificial intelligence with cybersecurity expertise to create 
        intelligent solutions that protect critical systems. Stay ahead of evolving digital threats with our innovative 
        tools and resources.
        """
    )

# Projects section
elif options == "Projects":
    st.header("Key Projects")
    st.write(
        """
        - **AI Pentesting Tools:** Automated vulnerability detection and exploitation testing.
        - **Threat Intelligence Models:** AI-driven threat analysis and detection.
        - **Secure Ecosystem Monitoring:** Real-time tools to detect anomalies and secure systems.
        """
    )

# Vision section
elif options == "Vision":
    st.header("Our Vision")
    st.write(
        """
        We aim to revolutionize cybersecurity by leveraging AI and machine learning to create intelligent, 
        scalable solutions that safeguard your digital ecosystem. 
        Open-source and collaborative, we strive to bring cybersecurity into the future.
        """
    )

# Contact section
elif options == "Contact":
    st.header("Contact Us")
    st.write(
        """
        Feel free to reach out for collaboration or any inquiries:
        
        - **GitHub:** [Dotcomhunters GitHub](https://github.com/YourGitHubProfile)
        - **Hugging Face:** [Dotcomhunters on Hugging Face](https://huggingface.co/Dotcomhunters)
        - **Email:** contact@dotcomhunters.com
        """
    )

# Footer
st.markdown("---")
st.write("© 2024 Dotcomhunters - All rights reserved.")