├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── Recommy.ipynb ├── SIH 2020 - AWSAR.pdf ├── Tessarect.ipynb ├── babel.plugin.js ├── data.json ├── jsconfig.json ├── netlify.toml ├── package.json ├── pdfs ├── AIIMS_Tabula.pdf ├── Air-India-Express.pdf ├── BECIL.pdf ├── Detail Advt. 03_2020 CSIR-JRF (GATE ).pdf ├── Detailed-PA-Advt-No-03-2020.pdf ├── Graduate_Technician_Apprentices.pdf ├── IIT_BHU_Vacancy.pdf ├── Indian_council_of_Medical_research.pdf ├── JIPMER.pdf ├── NDMA_Vacancy.pdf ├── NFL_Recruitment.pdf ├── Oil_India_Limited.pdf └── Vacancy_Bank-of-Baroda.pdf ├── postcss.config.js ├── public ├── algorithmia-0.2.1.js ├── awsar192.png ├── awsar512.png ├── favicon.png ├── index.html └── manifest.json ├── recomm.py ├── recomm_refine.py ├── src ├── App.jsx ├── api │ └── index.js ├── assets │ ├── Prototype.png │ ├── awsar.png │ ├── c1.jpg │ ├── c2.jpg │ ├── c3.jpg │ ├── emblem.svg │ ├── fonts │ │ └── ProximaNovaRegular.ttf │ ├── footer.png │ ├── govt-uk.png │ ├── loader.gif │ ├── slider1.jpg │ ├── slider2.jpg │ └── slider3.jpg ├── components │ ├── Analytics │ │ ├── Analytics.jsx │ │ └── index.js │ ├── Courses │ │ ├── Courses.jsx │ │ └── index.js │ ├── CreateJob │ │ ├── CreateJob.jsx │ │ └── index.js │ ├── CreateProfile │ │ ├── CreateProfile.jsx │ │ └── index.js │ ├── EmployeeDashboard │ │ ├── EmployeeDashboard.jsx │ │ └── index.js │ ├── Error404 │ │ ├── Error404.jsx │ │ └── index.js │ ├── Home │ │ ├── Home.jsx │ │ └── index.js │ ├── Icon.jsx │ ├── Job │ │ ├── Job.jsx │ │ └── index.js │ ├── JobApplicants │ │ ├── JobApplicants.jsx │ │ └── index.js │ ├── JobFairs │ │ ├── JobFairs.jsx │ │ └── index.js │ ├── Jobs │ │ ├── Jobs.jsx │ │ └── index.js │ ├── Login │ │ ├── Login.jsx │ │ └── index.js │ ├── Modal │ │ ├── Modal.jsx │ │ ├── StyledModal.js │ │ └── index.js │ ├── News │ │ ├── News.jsx │ │ └── index.js │ ├── OrgDashboard │ │ ├── OrgDashboard.jsx │ │ └── index.js │ ├── OrgProfile │ │ ├── OrgProfile.jsx │ │ └── index.js │ ├── Profile │ │ ├── Profile.jsx │ │ └── index.js │ ├── RecommendedJobs │ │ ├── RecommendedJobs.jsx │ │ └── index.js │ ├── Signup │ │ ├── Signup.jsx │ │ └── index.js │ ├── StyledContainer.js │ ├── StyledForm.js │ ├── UpdateJob │ │ ├── UpdateJob.jsx │ │ └── index.js │ ├── UpdateProfile │ │ ├── UpdateProfile.jsx │ │ └── index.js │ └── layout │ │ ├── Footer.jsx │ │ ├── Navbar.jsx │ │ └── styles │ │ ├── Footer.css │ │ └── Navbar.css ├── index.js ├── serviceWorker.js ├── styles │ ├── globalStyles.js │ ├── index.css │ └── tailwind.css ├── tailwind.config.js └── utils │ ├── courses.js │ ├── customHooks │ ├── useModal.js │ └── usePaginate.js │ ├── getIcons.js │ ├── index.js │ └── jobfair.js ├── summarizer.ipynb ├── tablua.ipynb └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.env 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/README.md -------------------------------------------------------------------------------- /Recommy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/Recommy.ipynb -------------------------------------------------------------------------------- /SIH 2020 - AWSAR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/SIH 2020 - AWSAR.pdf -------------------------------------------------------------------------------- /Tessarect.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/Tessarect.ipynb -------------------------------------------------------------------------------- /babel.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/babel.plugin.js -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/data.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/jsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/package.json -------------------------------------------------------------------------------- /pdfs/AIIMS_Tabula.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/AIIMS_Tabula.pdf -------------------------------------------------------------------------------- /pdfs/Air-India-Express.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/Air-India-Express.pdf -------------------------------------------------------------------------------- /pdfs/BECIL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/BECIL.pdf -------------------------------------------------------------------------------- /pdfs/Detail Advt. 03_2020 CSIR-JRF (GATE ).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/Detail Advt. 03_2020 CSIR-JRF (GATE ).pdf -------------------------------------------------------------------------------- /pdfs/Detailed-PA-Advt-No-03-2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/Detailed-PA-Advt-No-03-2020.pdf -------------------------------------------------------------------------------- /pdfs/Graduate_Technician_Apprentices.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/Graduate_Technician_Apprentices.pdf -------------------------------------------------------------------------------- /pdfs/IIT_BHU_Vacancy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/IIT_BHU_Vacancy.pdf -------------------------------------------------------------------------------- /pdfs/Indian_council_of_Medical_research.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/Indian_council_of_Medical_research.pdf -------------------------------------------------------------------------------- /pdfs/JIPMER.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/JIPMER.pdf -------------------------------------------------------------------------------- /pdfs/NDMA_Vacancy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/NDMA_Vacancy.pdf -------------------------------------------------------------------------------- /pdfs/NFL_Recruitment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/NFL_Recruitment.pdf -------------------------------------------------------------------------------- /pdfs/Oil_India_Limited.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/Oil_India_Limited.pdf -------------------------------------------------------------------------------- /pdfs/Vacancy_Bank-of-Baroda.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/pdfs/Vacancy_Bank-of-Baroda.pdf -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/algorithmia-0.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/public/algorithmia-0.2.1.js -------------------------------------------------------------------------------- /public/awsar192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/public/awsar192.png -------------------------------------------------------------------------------- /public/awsar512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/public/awsar512.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/public/manifest.json -------------------------------------------------------------------------------- /recomm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/recomm.py -------------------------------------------------------------------------------- /recomm_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/recomm_refine.py -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/assets/Prototype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/Prototype.png -------------------------------------------------------------------------------- /src/assets/awsar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/awsar.png -------------------------------------------------------------------------------- /src/assets/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/c1.jpg -------------------------------------------------------------------------------- /src/assets/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/c2.jpg -------------------------------------------------------------------------------- /src/assets/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/c3.jpg -------------------------------------------------------------------------------- /src/assets/emblem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/emblem.svg -------------------------------------------------------------------------------- /src/assets/fonts/ProximaNovaRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/fonts/ProximaNovaRegular.ttf -------------------------------------------------------------------------------- /src/assets/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/footer.png -------------------------------------------------------------------------------- /src/assets/govt-uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/govt-uk.png -------------------------------------------------------------------------------- /src/assets/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/loader.gif -------------------------------------------------------------------------------- /src/assets/slider1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/slider1.jpg -------------------------------------------------------------------------------- /src/assets/slider2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/slider2.jpg -------------------------------------------------------------------------------- /src/assets/slider3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/assets/slider3.jpg -------------------------------------------------------------------------------- /src/components/Analytics/Analytics.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Analytics/Analytics.jsx -------------------------------------------------------------------------------- /src/components/Analytics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Analytics/index.js -------------------------------------------------------------------------------- /src/components/Courses/Courses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Courses/Courses.jsx -------------------------------------------------------------------------------- /src/components/Courses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Courses/index.js -------------------------------------------------------------------------------- /src/components/CreateJob/CreateJob.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/CreateJob/CreateJob.jsx -------------------------------------------------------------------------------- /src/components/CreateJob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/CreateJob/index.js -------------------------------------------------------------------------------- /src/components/CreateProfile/CreateProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/CreateProfile/CreateProfile.jsx -------------------------------------------------------------------------------- /src/components/CreateProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/CreateProfile/index.js -------------------------------------------------------------------------------- /src/components/EmployeeDashboard/EmployeeDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/EmployeeDashboard/EmployeeDashboard.jsx -------------------------------------------------------------------------------- /src/components/EmployeeDashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/EmployeeDashboard/index.js -------------------------------------------------------------------------------- /src/components/Error404/Error404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Error404/Error404.jsx -------------------------------------------------------------------------------- /src/components/Error404/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Error404/index.js -------------------------------------------------------------------------------- /src/components/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Home/Home.jsx -------------------------------------------------------------------------------- /src/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Home/index.js -------------------------------------------------------------------------------- /src/components/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Icon.jsx -------------------------------------------------------------------------------- /src/components/Job/Job.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Job/Job.jsx -------------------------------------------------------------------------------- /src/components/Job/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Job/index.js -------------------------------------------------------------------------------- /src/components/JobApplicants/JobApplicants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/JobApplicants/JobApplicants.jsx -------------------------------------------------------------------------------- /src/components/JobApplicants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/JobApplicants/index.js -------------------------------------------------------------------------------- /src/components/JobFairs/JobFairs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/JobFairs/JobFairs.jsx -------------------------------------------------------------------------------- /src/components/JobFairs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/JobFairs/index.js -------------------------------------------------------------------------------- /src/components/Jobs/Jobs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Jobs/Jobs.jsx -------------------------------------------------------------------------------- /src/components/Jobs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Jobs/index.js -------------------------------------------------------------------------------- /src/components/Login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Login/Login.jsx -------------------------------------------------------------------------------- /src/components/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Login/index.js -------------------------------------------------------------------------------- /src/components/Modal/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Modal/Modal.jsx -------------------------------------------------------------------------------- /src/components/Modal/StyledModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Modal/StyledModal.js -------------------------------------------------------------------------------- /src/components/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Modal/index.js -------------------------------------------------------------------------------- /src/components/News/News.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/News/News.jsx -------------------------------------------------------------------------------- /src/components/News/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/News/index.js -------------------------------------------------------------------------------- /src/components/OrgDashboard/OrgDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/OrgDashboard/OrgDashboard.jsx -------------------------------------------------------------------------------- /src/components/OrgDashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/OrgDashboard/index.js -------------------------------------------------------------------------------- /src/components/OrgProfile/OrgProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/OrgProfile/OrgProfile.jsx -------------------------------------------------------------------------------- /src/components/OrgProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/OrgProfile/index.js -------------------------------------------------------------------------------- /src/components/Profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Profile/Profile.jsx -------------------------------------------------------------------------------- /src/components/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Profile/index.js -------------------------------------------------------------------------------- /src/components/RecommendedJobs/RecommendedJobs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/RecommendedJobs/RecommendedJobs.jsx -------------------------------------------------------------------------------- /src/components/RecommendedJobs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/RecommendedJobs/index.js -------------------------------------------------------------------------------- /src/components/Signup/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Signup/Signup.jsx -------------------------------------------------------------------------------- /src/components/Signup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/Signup/index.js -------------------------------------------------------------------------------- /src/components/StyledContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/StyledContainer.js -------------------------------------------------------------------------------- /src/components/StyledForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/StyledForm.js -------------------------------------------------------------------------------- /src/components/UpdateJob/UpdateJob.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/UpdateJob/UpdateJob.jsx -------------------------------------------------------------------------------- /src/components/UpdateJob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/UpdateJob/index.js -------------------------------------------------------------------------------- /src/components/UpdateProfile/UpdateProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/UpdateProfile/UpdateProfile.jsx -------------------------------------------------------------------------------- /src/components/UpdateProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/UpdateProfile/index.js -------------------------------------------------------------------------------- /src/components/layout/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/layout/Footer.jsx -------------------------------------------------------------------------------- /src/components/layout/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/layout/Navbar.jsx -------------------------------------------------------------------------------- /src/components/layout/styles/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/layout/styles/Footer.css -------------------------------------------------------------------------------- /src/components/layout/styles/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/components/layout/styles/Navbar.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/styles/globalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/styles/globalStyles.js -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /src/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/tailwind.config.js -------------------------------------------------------------------------------- /src/utils/courses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/utils/courses.js -------------------------------------------------------------------------------- /src/utils/customHooks/useModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/utils/customHooks/useModal.js -------------------------------------------------------------------------------- /src/utils/customHooks/usePaginate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/utils/customHooks/usePaginate.js -------------------------------------------------------------------------------- /src/utils/getIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/utils/getIcons.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/jobfair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/src/utils/jobfair.js -------------------------------------------------------------------------------- /summarizer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/summarizer.ipynb -------------------------------------------------------------------------------- /tablua.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/tablua.ipynb -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PragatiVerma18/SIH2020_MK95_Hashtag/HEAD/yarn.lock --------------------------------------------------------------------------------