├── .firebaserc ├── .github └── dependabot.yml ├── .gitignore ├── .travis.yml ├── README.md ├── cloudbuild.yaml ├── firebase.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.jsx ├── App.test.tsx ├── _helpers │ └── history.ts ├── assets │ ├── data │ │ └── users.js │ └── images │ │ ├── IntecsOpenSourceProjects │ │ ├── ProjectPictures │ │ │ └── project_1.jpg │ │ ├── github.png │ │ └── gitter.png │ │ ├── carousel │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ └── image5.jpg │ │ ├── events │ │ ├── event1.png │ │ └── event2.jpg │ │ ├── firstYearProjectsCarousel │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ └── image4.jpg │ │ ├── intecs_logo.png │ │ ├── openSourceProjectsHeader.jpg │ │ ├── secondYearProjectsCarousel │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ └── image3.jpg │ │ ├── uom_logo.png │ │ └── users │ │ ├── Default-Profile-Female.jpg │ │ └── Default-Profile-Male.jpg ├── components │ ├── adminNavBar │ │ ├── AdminNavBar.scss │ │ └── AdminNavBar.tsx │ ├── articleCard │ │ ├── ArticleCard.scss │ │ └── ArticleCard.tsx │ ├── contactus │ │ ├── ContactUs.tsx │ │ └── Contactus.scss │ ├── contributeCard │ │ ├── ContributeCard.jsx │ │ └── ContributeCard.scss │ ├── eventCard │ │ ├── EventCard.scss │ │ └── EventCard.tsx │ ├── eventList │ │ ├── EventList.scss │ │ └── EventList.tsx │ ├── footer │ │ ├── Footer.scss │ │ ├── Footer.tsx │ │ └── SocialBar.jsx │ ├── headingBanner │ │ ├── banner.scss │ │ ├── banner.tsx │ │ └── logo │ │ │ ├── banner.jpg │ │ │ └── frog.png │ ├── homeCarousel │ │ ├── HomeCarousel.scss │ │ └── HomeCarousel.tsx │ ├── latestNews │ │ ├── LatestNews.scss │ │ ├── LatestNews.tsx │ │ └── images │ │ │ ├── Hash-Code.jpg │ │ │ └── Photo.jpg │ ├── linkItHeader │ │ ├── LinkItHeader.scss │ │ ├── LinkItHeader.tsx │ │ └── img │ │ │ └── cover.jpg │ ├── navbar │ │ ├── Navbar.scss │ │ └── Navbar.tsx │ ├── openSourceProjectsHeader │ │ ├── openSourceProjectsHeader.jsx │ │ └── openSourceProjectsHeader.scss │ ├── pagination │ │ ├── EventPagination.scss │ │ ├── EventPagination.tsx │ │ └── Interfaces.tsx │ ├── secondYearProjectsHeader │ │ ├── secondYearProjectsHeader.scss │ │ └── secondYearProjectsHeader.tsx │ ├── sidebar │ │ ├── dashboardSidebar │ │ │ ├── DashboardSidebar.jsx │ │ │ └── DashboardSidebar.scss │ │ ├── leftsidebar │ │ │ ├── LeftSideBar.tsx │ │ │ └── LeftSidebar.scss │ │ └── rightsidebar │ │ │ ├── Rightsidebar.scss │ │ │ ├── Rightsidebar.tsx │ │ │ └── about.png │ └── studentPostsGrid │ │ ├── PostGrid.scss │ │ └── PostGrid.tsx ├── index.css ├── index.js ├── layouts │ ├── DashboardLayout.jsx │ ├── DefaultLayout.jsx │ └── LoginLayout.jsx ├── modules │ ├── about │ │ ├── About.scss │ │ └── About.tsx │ ├── auth │ │ ├── index.js │ │ └── login │ │ │ ├── Login.scss │ │ │ └── Login.tsx │ ├── contributes │ │ ├── Contributes.jsx │ │ ├── Contributes.scss │ │ └── ducks │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── reducers.js │ │ │ ├── service.js │ │ │ └── types.js │ ├── dashbaord │ │ ├── Dashbaord.tsx │ │ ├── Dashboard.scss │ │ ├── addstudentWork │ │ │ ├── ProjectsListsTables │ │ │ │ └── projectsListTable.jsx │ │ │ ├── addStudentWork.jsx │ │ │ └── addStudentWork.scss │ │ ├── dashboardLinkIT │ │ │ └── dashboardLintIT.jsx │ │ ├── eventFlowManagement │ │ │ ├── EvenetFloorManagement.scss │ │ │ └── EventFlowManagement.tsx │ │ ├── eventManagement │ │ │ ├── EvenetManagement.scss │ │ │ └── EventManagement.tsx │ │ ├── newsManagement │ │ │ ├── NewsManagement.scss │ │ │ └── NewsManagement.tsx │ │ ├── openSourceManagement │ │ │ └── openSourceManagement.jsx │ │ └── projectManagement │ │ │ ├── ProjectManagement.scss │ │ │ └── ProjectManagement.tsx │ ├── event │ │ ├── Event.jsx │ │ ├── Event.scss │ │ └── ducks │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── reducers.js │ │ │ ├── service.js │ │ │ └── types.js │ ├── gallery │ │ ├── Gallery.scss │ │ └── Gallery.tsx │ ├── home │ │ └── Home.tsx │ ├── index.ts │ ├── project │ │ ├── IntecsOpenSource │ │ │ ├── IntecsOpenSourceProjects.scss │ │ │ └── IntecsOpenSourceProjects.tsx │ │ ├── LinkIT │ │ │ ├── LinkIT.scss │ │ │ └── LinkIT.tsx │ │ ├── Project.scss │ │ ├── Project.tsx │ │ └── StudentsWork │ │ │ ├── StudentsWork.scss │ │ │ ├── StudentsWork.tsx │ │ │ ├── firstYearProjects │ │ │ ├── carousel │ │ │ │ ├── carousel.scss │ │ │ │ └── carousel.tsx │ │ │ ├── firstYearProjects.scss │ │ │ └── firstYearProjects.tsx │ │ │ ├── fourthYearProjects │ │ │ ├── fourthYearProjects.scss │ │ │ └── fourthYearProjects.tsx │ │ │ ├── headerSW │ │ │ ├── headersw.scss │ │ │ ├── headersw.tsx │ │ │ └── logo │ │ │ │ ├── bgoverlay.png │ │ │ │ └── sworks.jpg │ │ │ ├── researchPublications │ │ │ ├── researchPublications.scss │ │ │ └── researchPublications.tsx │ │ │ └── secondYearProjects │ │ │ ├── secondYearProjects.scss │ │ │ └── secondYearProjects.tsx │ └── utilityPages │ │ ├── CommingSoonPage.tsx │ │ └── NotFoundPage.tsx ├── react-app-env.d.ts ├── reducers.js ├── routes.ts ├── serviceWorker.ts ├── services.js ├── setupTests.ts ├── styles │ └── App.css └── utils │ ├── EndPoints.js │ └── HTTPClient.js └── tsconfig.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/README.md -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/_helpers/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/_helpers/history.ts -------------------------------------------------------------------------------- /src/assets/data/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/data/users.js -------------------------------------------------------------------------------- /src/assets/images/IntecsOpenSourceProjects/ProjectPictures/project_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/IntecsOpenSourceProjects/ProjectPictures/project_1.jpg -------------------------------------------------------------------------------- /src/assets/images/IntecsOpenSourceProjects/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/IntecsOpenSourceProjects/github.png -------------------------------------------------------------------------------- /src/assets/images/IntecsOpenSourceProjects/gitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/IntecsOpenSourceProjects/gitter.png -------------------------------------------------------------------------------- /src/assets/images/carousel/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/carousel/image1.jpg -------------------------------------------------------------------------------- /src/assets/images/carousel/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/carousel/image2.jpg -------------------------------------------------------------------------------- /src/assets/images/carousel/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/carousel/image3.jpg -------------------------------------------------------------------------------- /src/assets/images/carousel/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/carousel/image4.jpg -------------------------------------------------------------------------------- /src/assets/images/carousel/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/carousel/image5.jpg -------------------------------------------------------------------------------- /src/assets/images/events/event1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/events/event1.png -------------------------------------------------------------------------------- /src/assets/images/events/event2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/events/event2.jpg -------------------------------------------------------------------------------- /src/assets/images/firstYearProjectsCarousel/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/firstYearProjectsCarousel/image1.jpg -------------------------------------------------------------------------------- /src/assets/images/firstYearProjectsCarousel/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/firstYearProjectsCarousel/image2.jpg -------------------------------------------------------------------------------- /src/assets/images/firstYearProjectsCarousel/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/firstYearProjectsCarousel/image3.jpg -------------------------------------------------------------------------------- /src/assets/images/firstYearProjectsCarousel/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/firstYearProjectsCarousel/image4.jpg -------------------------------------------------------------------------------- /src/assets/images/intecs_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/intecs_logo.png -------------------------------------------------------------------------------- /src/assets/images/openSourceProjectsHeader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/openSourceProjectsHeader.jpg -------------------------------------------------------------------------------- /src/assets/images/secondYearProjectsCarousel/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/secondYearProjectsCarousel/image1.jpg -------------------------------------------------------------------------------- /src/assets/images/secondYearProjectsCarousel/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/secondYearProjectsCarousel/image2.jpg -------------------------------------------------------------------------------- /src/assets/images/secondYearProjectsCarousel/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/secondYearProjectsCarousel/image3.jpg -------------------------------------------------------------------------------- /src/assets/images/uom_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/uom_logo.png -------------------------------------------------------------------------------- /src/assets/images/users/Default-Profile-Female.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/users/Default-Profile-Female.jpg -------------------------------------------------------------------------------- /src/assets/images/users/Default-Profile-Male.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/assets/images/users/Default-Profile-Male.jpg -------------------------------------------------------------------------------- /src/components/adminNavBar/AdminNavBar.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/adminNavBar/AdminNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/adminNavBar/AdminNavBar.tsx -------------------------------------------------------------------------------- /src/components/articleCard/ArticleCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/articleCard/ArticleCard.scss -------------------------------------------------------------------------------- /src/components/articleCard/ArticleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/articleCard/ArticleCard.tsx -------------------------------------------------------------------------------- /src/components/contactus/ContactUs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/contactus/ContactUs.tsx -------------------------------------------------------------------------------- /src/components/contactus/Contactus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/contactus/Contactus.scss -------------------------------------------------------------------------------- /src/components/contributeCard/ContributeCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/contributeCard/ContributeCard.jsx -------------------------------------------------------------------------------- /src/components/contributeCard/ContributeCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/contributeCard/ContributeCard.scss -------------------------------------------------------------------------------- /src/components/eventCard/EventCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/eventCard/EventCard.scss -------------------------------------------------------------------------------- /src/components/eventCard/EventCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/eventCard/EventCard.tsx -------------------------------------------------------------------------------- /src/components/eventList/EventList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/eventList/EventList.scss -------------------------------------------------------------------------------- /src/components/eventList/EventList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/eventList/EventList.tsx -------------------------------------------------------------------------------- /src/components/footer/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/footer/Footer.scss -------------------------------------------------------------------------------- /src/components/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/footer/SocialBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/footer/SocialBar.jsx -------------------------------------------------------------------------------- /src/components/headingBanner/banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/headingBanner/banner.scss -------------------------------------------------------------------------------- /src/components/headingBanner/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/headingBanner/banner.tsx -------------------------------------------------------------------------------- /src/components/headingBanner/logo/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/headingBanner/logo/banner.jpg -------------------------------------------------------------------------------- /src/components/headingBanner/logo/frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/headingBanner/logo/frog.png -------------------------------------------------------------------------------- /src/components/homeCarousel/HomeCarousel.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/homeCarousel/HomeCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/homeCarousel/HomeCarousel.tsx -------------------------------------------------------------------------------- /src/components/latestNews/LatestNews.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/latestNews/LatestNews.scss -------------------------------------------------------------------------------- /src/components/latestNews/LatestNews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/latestNews/LatestNews.tsx -------------------------------------------------------------------------------- /src/components/latestNews/images/Hash-Code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/latestNews/images/Hash-Code.jpg -------------------------------------------------------------------------------- /src/components/latestNews/images/Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/latestNews/images/Photo.jpg -------------------------------------------------------------------------------- /src/components/linkItHeader/LinkItHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/linkItHeader/LinkItHeader.scss -------------------------------------------------------------------------------- /src/components/linkItHeader/LinkItHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/linkItHeader/LinkItHeader.tsx -------------------------------------------------------------------------------- /src/components/linkItHeader/img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/linkItHeader/img/cover.jpg -------------------------------------------------------------------------------- /src/components/navbar/Navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/navbar/Navbar.scss -------------------------------------------------------------------------------- /src/components/navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/navbar/Navbar.tsx -------------------------------------------------------------------------------- /src/components/openSourceProjectsHeader/openSourceProjectsHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/openSourceProjectsHeader/openSourceProjectsHeader.jsx -------------------------------------------------------------------------------- /src/components/openSourceProjectsHeader/openSourceProjectsHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/openSourceProjectsHeader/openSourceProjectsHeader.scss -------------------------------------------------------------------------------- /src/components/pagination/EventPagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/pagination/EventPagination.scss -------------------------------------------------------------------------------- /src/components/pagination/EventPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/pagination/EventPagination.tsx -------------------------------------------------------------------------------- /src/components/pagination/Interfaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/pagination/Interfaces.tsx -------------------------------------------------------------------------------- /src/components/secondYearProjectsHeader/secondYearProjectsHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/secondYearProjectsHeader/secondYearProjectsHeader.scss -------------------------------------------------------------------------------- /src/components/secondYearProjectsHeader/secondYearProjectsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/secondYearProjectsHeader/secondYearProjectsHeader.tsx -------------------------------------------------------------------------------- /src/components/sidebar/dashboardSidebar/DashboardSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/sidebar/dashboardSidebar/DashboardSidebar.jsx -------------------------------------------------------------------------------- /src/components/sidebar/dashboardSidebar/DashboardSidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/sidebar/dashboardSidebar/DashboardSidebar.scss -------------------------------------------------------------------------------- /src/components/sidebar/leftsidebar/LeftSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/sidebar/leftsidebar/LeftSideBar.tsx -------------------------------------------------------------------------------- /src/components/sidebar/leftsidebar/LeftSidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/sidebar/leftsidebar/LeftSidebar.scss -------------------------------------------------------------------------------- /src/components/sidebar/rightsidebar/Rightsidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/sidebar/rightsidebar/Rightsidebar.scss -------------------------------------------------------------------------------- /src/components/sidebar/rightsidebar/Rightsidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/sidebar/rightsidebar/Rightsidebar.tsx -------------------------------------------------------------------------------- /src/components/sidebar/rightsidebar/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/sidebar/rightsidebar/about.png -------------------------------------------------------------------------------- /src/components/studentPostsGrid/PostGrid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/studentPostsGrid/PostGrid.scss -------------------------------------------------------------------------------- /src/components/studentPostsGrid/PostGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/components/studentPostsGrid/PostGrid.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/index.js -------------------------------------------------------------------------------- /src/layouts/DashboardLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/layouts/DashboardLayout.jsx -------------------------------------------------------------------------------- /src/layouts/DefaultLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/layouts/DefaultLayout.jsx -------------------------------------------------------------------------------- /src/layouts/LoginLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/layouts/LoginLayout.jsx -------------------------------------------------------------------------------- /src/modules/about/About.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/about/About.scss -------------------------------------------------------------------------------- /src/modules/about/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/about/About.tsx -------------------------------------------------------------------------------- /src/modules/auth/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/auth/login/Login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/auth/login/Login.scss -------------------------------------------------------------------------------- /src/modules/auth/login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/auth/login/Login.tsx -------------------------------------------------------------------------------- /src/modules/contributes/Contributes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/contributes/Contributes.jsx -------------------------------------------------------------------------------- /src/modules/contributes/Contributes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/contributes/Contributes.scss -------------------------------------------------------------------------------- /src/modules/contributes/ducks/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/contributes/ducks/actions.js -------------------------------------------------------------------------------- /src/modules/contributes/ducks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/contributes/ducks/index.js -------------------------------------------------------------------------------- /src/modules/contributes/ducks/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/contributes/ducks/reducers.js -------------------------------------------------------------------------------- /src/modules/contributes/ducks/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/contributes/ducks/service.js -------------------------------------------------------------------------------- /src/modules/contributes/ducks/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/contributes/ducks/types.js -------------------------------------------------------------------------------- /src/modules/dashbaord/Dashbaord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/Dashbaord.tsx -------------------------------------------------------------------------------- /src/modules/dashbaord/Dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/Dashboard.scss -------------------------------------------------------------------------------- /src/modules/dashbaord/addstudentWork/ProjectsListsTables/projectsListTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/addstudentWork/ProjectsListsTables/projectsListTable.jsx -------------------------------------------------------------------------------- /src/modules/dashbaord/addstudentWork/addStudentWork.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/addstudentWork/addStudentWork.jsx -------------------------------------------------------------------------------- /src/modules/dashbaord/addstudentWork/addStudentWork.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/addstudentWork/addStudentWork.scss -------------------------------------------------------------------------------- /src/modules/dashbaord/dashboardLinkIT/dashboardLintIT.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/dashboardLinkIT/dashboardLintIT.jsx -------------------------------------------------------------------------------- /src/modules/dashbaord/eventFlowManagement/EvenetFloorManagement.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/eventFlowManagement/EvenetFloorManagement.scss -------------------------------------------------------------------------------- /src/modules/dashbaord/eventFlowManagement/EventFlowManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/eventFlowManagement/EventFlowManagement.tsx -------------------------------------------------------------------------------- /src/modules/dashbaord/eventManagement/EvenetManagement.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/eventManagement/EvenetManagement.scss -------------------------------------------------------------------------------- /src/modules/dashbaord/eventManagement/EventManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/eventManagement/EventManagement.tsx -------------------------------------------------------------------------------- /src/modules/dashbaord/newsManagement/NewsManagement.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/newsManagement/NewsManagement.scss -------------------------------------------------------------------------------- /src/modules/dashbaord/newsManagement/NewsManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/newsManagement/NewsManagement.tsx -------------------------------------------------------------------------------- /src/modules/dashbaord/openSourceManagement/openSourceManagement.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/openSourceManagement/openSourceManagement.jsx -------------------------------------------------------------------------------- /src/modules/dashbaord/projectManagement/ProjectManagement.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/projectManagement/ProjectManagement.scss -------------------------------------------------------------------------------- /src/modules/dashbaord/projectManagement/ProjectManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/dashbaord/projectManagement/ProjectManagement.tsx -------------------------------------------------------------------------------- /src/modules/event/Event.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/event/Event.jsx -------------------------------------------------------------------------------- /src/modules/event/Event.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/event/Event.scss -------------------------------------------------------------------------------- /src/modules/event/ducks/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/event/ducks/actions.js -------------------------------------------------------------------------------- /src/modules/event/ducks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/event/ducks/index.js -------------------------------------------------------------------------------- /src/modules/event/ducks/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/event/ducks/reducers.js -------------------------------------------------------------------------------- /src/modules/event/ducks/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/event/ducks/service.js -------------------------------------------------------------------------------- /src/modules/event/ducks/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/event/ducks/types.js -------------------------------------------------------------------------------- /src/modules/gallery/Gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/gallery/Gallery.scss -------------------------------------------------------------------------------- /src/modules/gallery/Gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/gallery/Gallery.tsx -------------------------------------------------------------------------------- /src/modules/home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/home/Home.tsx -------------------------------------------------------------------------------- /src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/index.ts -------------------------------------------------------------------------------- /src/modules/project/IntecsOpenSource/IntecsOpenSourceProjects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/IntecsOpenSource/IntecsOpenSourceProjects.scss -------------------------------------------------------------------------------- /src/modules/project/IntecsOpenSource/IntecsOpenSourceProjects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/IntecsOpenSource/IntecsOpenSourceProjects.tsx -------------------------------------------------------------------------------- /src/modules/project/LinkIT/LinkIT.scss: -------------------------------------------------------------------------------- 1 | .linkIT-container { 2 | background-color: #fff; 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/project/LinkIT/LinkIT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/LinkIT/LinkIT.tsx -------------------------------------------------------------------------------- /src/modules/project/Project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/Project.scss -------------------------------------------------------------------------------- /src/modules/project/Project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/Project.tsx -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/StudentsWork.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/StudentsWork.scss -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/StudentsWork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/StudentsWork.tsx -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/firstYearProjects/carousel/carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/firstYearProjects/carousel/carousel.scss -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/firstYearProjects/carousel/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/firstYearProjects/carousel/carousel.tsx -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/firstYearProjects/firstYearProjects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/firstYearProjects/firstYearProjects.scss -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/firstYearProjects/firstYearProjects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/firstYearProjects/firstYearProjects.tsx -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/fourthYearProjects/fourthYearProjects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/fourthYearProjects/fourthYearProjects.scss -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/fourthYearProjects/fourthYearProjects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/fourthYearProjects/fourthYearProjects.tsx -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/headerSW/headersw.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/headerSW/headersw.scss -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/headerSW/headersw.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/headerSW/headersw.tsx -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/headerSW/logo/bgoverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/headerSW/logo/bgoverlay.png -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/headerSW/logo/sworks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/headerSW/logo/sworks.jpg -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/researchPublications/researchPublications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/researchPublications/researchPublications.scss -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/researchPublications/researchPublications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/researchPublications/researchPublications.tsx -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/secondYearProjects/secondYearProjects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/secondYearProjects/secondYearProjects.scss -------------------------------------------------------------------------------- /src/modules/project/StudentsWork/secondYearProjects/secondYearProjects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/project/StudentsWork/secondYearProjects/secondYearProjects.tsx -------------------------------------------------------------------------------- /src/modules/utilityPages/CommingSoonPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/utilityPages/CommingSoonPage.tsx -------------------------------------------------------------------------------- /src/modules/utilityPages/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/modules/utilityPages/NotFoundPage.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/reducers.js -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/services.js -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/styles/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/styles/App.css -------------------------------------------------------------------------------- /src/utils/EndPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/utils/EndPoints.js -------------------------------------------------------------------------------- /src/utils/HTTPClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/src/utils/HTTPClient.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INTECS-ITFAC/intecs_webapp_front-end/HEAD/tsconfig.json --------------------------------------------------------------------------------