├── .gitignore ├── README.md ├── _redirects ├── images ├── s1.PNG └── s2.PNG ├── package-lock.json ├── package.json ├── public ├── Akshat_logo.jpg ├── _redirects ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── ChooseBatch.jsx ├── ChooseOpenElective.jsx ├── ChooseProfessionalElectiveB.jsx ├── ChooseProfessionalElectiveD.jsx ├── Footer.jsx ├── MobileNavigation.jsx ├── Navigation.jsx └── Timetable.jsx ├── css ├── Footer.css ├── MobileNavigation.css ├── Navigation.css └── Timetable.css ├── index.css ├── index.js ├── reportWebVitals.js ├── setupTests.js └── timetable ├── batch1.json ├── batch2.json ├── openelectives.json └── professionalelectives.json /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Welcome to SRM-TimeTable Web-App 👋

2 |

3 | Version 4 | 5 | Documentation 6 | 7 | 8 | License: Open Source 9 | 10 |

11 | 12 | > A simple Web-App displaying the time slots of respective subjects with their joining meet link. 13 | 14 | ## PREVIEW 15 | 16 |

17 | accessibility text 18 | 19 | 20 |

21 | 22 | ## Install 23 | 24 | ```sh 25 | npm install 26 | ``` 27 | 28 | ## Usage 29 | 30 | ```sh 31 | npm start 32 | ``` 33 | 34 | ## Run tests 35 | 36 | ```sh 37 | npm run test 38 | ``` 39 | 40 | 41 | ## Author 42 | 43 | 👤 **Akshat Sachan** 44 | 45 | * Website: sachan.netlify.com 46 | * Twitter: [SachanAK36](https://twitter.com/sachanaks36) 47 | * Github: [CryptocoderAS](https://github.com/CryptocoderAS) 48 | * LinkedIn: [Akshat Sachan](https://www.linkedin.com/in/akshat-sachan-58b2921ab/) 49 | 50 | ## Show your support 51 | 52 | Give a ⭐️ if this project helped you! 53 | 54 | ## 📝 License 55 | Original Repo [Md. Muazam](https://github.com/mmuazam98/mytimetable)
56 | Copyright © 2021 [Akshat Sachan](https://github.com/CryptocoderAS).
57 | This project is [Open Source](none) licensed.
58 | 59 | -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /images/s1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRYPTOcoderAS/SRM-TimeTable/f486f38deae976f75ebbae51a861b5816678dc90/images/s1.PNG -------------------------------------------------------------------------------- /images/s2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRYPTOcoderAS/SRM-TimeTable/f486f38deae976f75ebbae51a861b5816678dc90/images/s2.PNG -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "timetable", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@material-ui/core": "^4.12.2", 7 | "@material-ui/icons": "^4.11.2", 8 | "@testing-library/jest-dom": "^5.14.1", 9 | "@testing-library/react": "^11.2.7", 10 | "@testing-library/user-event": "^12.8.3", 11 | "jquery": "^3.6.0", 12 | "react": "^17.0.2", 13 | "react-dom": "^17.0.2", 14 | "react-router-dom": "^5.2.0", 15 | "react-scripts": "4.0.3", 16 | "web-vitals": "^1.1.2" 17 | }, 18 | "scripts": { 19 | "start": "react-scripts start", 20 | "build": "react-scripts build", 21 | "test": "react-scripts test", 22 | "eject": "react-scripts eject" 23 | }, 24 | "eslintConfig": { 25 | "extends": [ 26 | "react-app", 27 | "react-app/jest" 28 | ] 29 | }, 30 | "browserslist": { 31 | "production": [ 32 | ">0.2%", 33 | "not dead", 34 | "not op_mini all" 35 | ], 36 | "development": [ 37 | "last 1 chrome version", 38 | "last 1 firefox version", 39 | "last 1 safari version" 40 | ] 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /public/Akshat_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRYPTOcoderAS/SRM-TimeTable/f486f38deae976f75ebbae51a861b5816678dc90/public/Akshat_logo.jpg -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRYPTOcoderAS/SRM-TimeTable/f486f38deae976f75ebbae51a861b5816678dc90/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | Time Table 18 | 19 | 20 | 21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRYPTOcoderAS/SRM-TimeTable/f486f38deae976f75ebbae51a861b5816678dc90/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRYPTOcoderAS/SRM-TimeTable/f486f38deae976f75ebbae51a861b5816678dc90/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "Akshat_logo.jpg", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "Akshat_logo.jpg", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "Akshat_logo.jpg", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRYPTOcoderAS/SRM-TimeTable/f486f38deae976f75ebbae51a861b5816678dc90/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { BrowserRouter as Router, Route, Switch } from "react-router-dom"; 3 | import Navigation from "./components/Navigation"; 4 | import MobileNavigation from "./components/MobileNavigation"; 5 | import Timetable from "./components/Timetable"; 6 | import Footer from "./components/Footer"; 7 | const App = () => { 8 | return ( 9 | 10 | 11 | 12 | 13 | 14 | 15 |