import streamlit as st from streamlit_extras.switch_page_button import switch_page def apollo_page_switch(): switch_to_apollo = st.button("Visit the page for Apollo extract input") if switch_to_apollo: switch_page("pages_Apollo_Extract") def BH_page_switch(): switch_to_BH = st.button("Visit the page dedicated for Business hubs use case") if switch_to_BH: switch_page("pages_Business_Hub") st.markdown( """ """, unsafe_allow_html=True, ) st.markdown('

SalesIntel AI

', unsafe_allow_html=True) st.markdown("""

Business Hubs

Generate Emails - NGO Oriented Function 🌍

Generates personalized Emails for NGO campaigns, you have two options to use it

With Scraping:

Best for Mass Emails with minimal initial data.

Required Columns:

Check the template from here

Opt-Out of Scraping:

Best for Low Volume Emails, Perfect for detailed information and targeted approach.

Required Columns:

Check the template from here

🏢 Generate Emails for Industries/Startups

Supports personalized email generation for specific industries or startups, you have two options to use it

With Scraping:

For comprehensive company info with limited initial data.

Required Columns:

Check the template from here

Opt-Out of Scraping:

For complete company descriptions at hand.

Required Columns:

Check the template from here
""",unsafe_allow_html=True) st.markdown("""

""", unsafe_allow_html=True) BH_page_switch() st.markdown("-----------------------------------------------------") st.markdown("""

Sales Core team - Apollo -

Data Processing Functions

Company-Specific Client Function

Upload a CSV with company names and websites.

User-Specific Client Function

Upload a CSV with personal and company information.

Both Features Function

Combine user and company-specific data processing.


""", unsafe_allow_html=True) apollo_page_switch() logo_url = "https://i.imgur.com/WYnv26e.jpeg" # Replace this with your image's direct URL st.markdown( f""" """, unsafe_allow_html=True, )