import streamlit as st
def main():
css_dark_mode = """
"""
# Inject the custom CSS
st.markdown(css_dark_mode, unsafe_allow_html=True)
# Header Section
html_temp = """
"""
st.markdown(html_temp, unsafe_allow_html=True)
# st.title("Domain Name Suggestion System")
# Get user input
context = st.text_input("Describe your business here...")
# Generate the response
if st.button("Generate"):
with st.spinner("Generating Domain Names..."):
result = '\n1. GreenGrocer\n2. VeggieVault\n3. PlantPick\n4. HarvestHub\n5. VeggieVault\n6. FreshFeast\n7. VeggieVault\n8. GreenGrocer\n9. HarvestHub\n10. FreshFeast'
st.write(result)
if __name__ == "__main__":
main()