File size: 588 Bytes
9edda52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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