# app.py import streamlit as st from multipage import MultiPage from pages import teacher_page, student_page # Create an instance of the app app = MultiPage() # Title and description st.set_page_config(page_title="EduConnect", layout="wide") st.title("📚 EduConnect: Platform for Teachers and Students") st.markdown("Empowering teachers and students with seamless collaboration and learning.") # Add pages to the app app.add_page("Teacher's Portal", teacher_page.app) app.add_page("Student's Hub", student_page.app) # Run the app app.run() # requirement.txt streamlit pandas numpy