""" School Module - Pages Individual page renderers for the school frontend """ from .dashboard import school_dashboard from .attendance import attendance_page from .grades import grades_page from .timetable import timetable_page from .parent_onboarding import parent_onboarding __all__ = [ "school_dashboard", "attendance_page", "grades_page", "timetable_page", "parent_onboarding", ]