import streamlit as st
from styles import inject_css
st.set_page_config(
page_title="KrishiKotha - কৃষি সহায়ক",
page_icon="🌾",
layout="centered"
)
inject_css()
# Hero section
st.markdown("""
🌾
KrishiKotha
কৃষি সহায়ক
কথা বলুন, পরামর্শ পান — কোনো টাইপ করার প্রয়োজন নেই
""", unsafe_allow_html=True)
st.markdown('✨ কেন KrishiKotha
', unsafe_allow_html=True)
col1, col2, col3 = st.columns(3)
with col1:
st.markdown("""
🎙️
শুধু কথা বলুন
টাইপ বা পড়ার প্রয়োজন নেই, বাংলায় প্রশ্ন বলুন
""", unsafe_allow_html=True)
with col2:
st.markdown("""
📚
বিশ্বস্ত তথ্য
DAE, BARI, BRRI-এর প্রকৃত কৃষি নির্দেশিকা থেকে উত্তর
""", unsafe_allow_html=True)
with col3:
st.markdown("""
🔊
কথ্য উত্তর
লিখিত ও শোনার মতো উভয় আকারে সহজ উত্তর
""", unsafe_allow_html=True)
st.markdown('', unsafe_allow_html=True)
# Call to action
st.markdown('', unsafe_allow_html=True)
_, center_col, _ = st.columns([1, 2, 1])
with center_col:
if st.button("🎙️ প্রশ্ন জিজ্ঞাসা করুন শুরু করি", use_container_width=True, type="primary"):
st.switch_page("pages/1_🎙️_সহায়ক.py")
st.markdown('
', unsafe_allow_html=True)
st.markdown("""
""", unsafe_allow_html=True)