├── .gitignore ├── LICENSE ├── README.md ├── backend ├── Procfile ├── app.js ├── middleware │ └── auth.js ├── models │ ├── Assignment.js │ ├── Attendance.js │ ├── Schedule.js │ └── User.js ├── package.json ├── routes │ ├── assignments.js │ ├── attendance.js │ ├── auth.js │ ├── notes.js │ ├── schedule.js │ └── users.js ├── server.js └── vercel.json └── frontend ├── bun.lockb ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.css ├── App.tsx ├── api │ └── axios.ts ├── components │ ├── AuthCheck.tsx │ ├── Layout.tsx │ ├── ProtectedRoute.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── contexts │ └── AuthContext.tsx ├── hooks │ ├── use-mobile.tsx │ └── use-toast.ts ├── img │ └── campus-dashboard.png ├── index.css ├── lib │ └── utils.ts ├── main.tsx ├── pages │ ├── AdminDashboard.tsx │ ├── Assignments.tsx │ ├── Attendance.tsx │ ├── Dashboard.tsx │ ├── GPACalculator.tsx │ ├── HomePage.tsx │ ├── Index.tsx │ ├── NotFound.tsx │ ├── Notes.tsx │ ├── Profile.tsx │ ├── Resources.tsx │ ├── Schedule.tsx │ ├── StudentDashboard.tsx │ ├── TeacherDashboard.tsx │ └── Unauthorized.tsx └── vite-env.d.ts ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/README.md -------------------------------------------------------------------------------- /backend/Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/middleware/auth.js -------------------------------------------------------------------------------- /backend/models/Assignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/models/Assignment.js -------------------------------------------------------------------------------- /backend/models/Attendance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/models/Attendance.js -------------------------------------------------------------------------------- /backend/models/Schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/models/Schedule.js -------------------------------------------------------------------------------- /backend/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/models/User.js -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/routes/assignments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/routes/assignments.js -------------------------------------------------------------------------------- /backend/routes/attendance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/routes/attendance.js -------------------------------------------------------------------------------- /backend/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/routes/auth.js -------------------------------------------------------------------------------- /backend/routes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/routes/notes.js -------------------------------------------------------------------------------- /backend/routes/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/routes/schedule.js -------------------------------------------------------------------------------- /backend/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/routes/users.js -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/server.js -------------------------------------------------------------------------------- /backend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/backend/vercel.json -------------------------------------------------------------------------------- /frontend/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/bun.lockb -------------------------------------------------------------------------------- /frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/components.json -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/api/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/api/axios.ts -------------------------------------------------------------------------------- /frontend/src/components/AuthCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/AuthCheck.tsx -------------------------------------------------------------------------------- /frontend/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/Layout.tsx -------------------------------------------------------------------------------- /frontend/src/components/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ProtectedRoute.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/card.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/command.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/form.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/input.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/label.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/select.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/table.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /frontend/src/contexts/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/contexts/AuthContext.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /frontend/src/img/campus-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/img/campus-dashboard.png -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/pages/AdminDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/AdminDashboard.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Assignments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/Assignments.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Attendance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/Attendance.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GPACalculator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/GPACalculator.tsx -------------------------------------------------------------------------------- /frontend/src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/Index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/Notes.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/Profile.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/Resources.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Schedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/Schedule.tsx -------------------------------------------------------------------------------- /frontend/src/pages/StudentDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/StudentDashboard.tsx -------------------------------------------------------------------------------- /frontend/src/pages/TeacherDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/TeacherDashboard.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Unauthorized.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/src/pages/Unauthorized.tsx -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixdev100/TAP/HEAD/frontend/vite.config.ts --------------------------------------------------------------------------------