HopeHire is a job portal that's specifically designed with the health and physical conditions of kidney patients in mind. Our recommendation AI serves potential job opportunities that match their skillset, experience, and their health needs.
This repository contains the frontend code for HopeHire. We built this frontend using React and Tailwind CSS, making use of their respective features to create a responsive and user-friendly interface. The code is organized into reusable components, making it easy to maintain and add new features.
The frontend is integrated with the HopeHire backend, which runs on Express. The backend provides the API for our recommendation AI and handles user authentication and job applications. If you'd like to explore/contribute to the backend, please see the HopeHire Backend repository.
Prerequisites NodeJS LTS v18.14.0
- Install nvm on your machine
- run
nvm install v18.14.0
- run
nvm use
- Run
npm install
in the working directory to install required packages - Reference
.env.example
and create your own.env
file - Run
npm run start
to start the server on localhost
- Live Site - Try it out!
- Figma Design - Take a look at our design!
src/
├─ api/
│ ├─ ApiHandler.ts
│ ├─ ApiService.ts
├─ assets/
├─ components/
│ ├─ ExampleComponent/
│ │ ├─ ExampleComponent.tsx
│ │ ├─ index.ts
├─ constants/
├─ pages/
│ ├─ Home/
│ │ ├─ Home.tsx
│ │ ├─ index.ts
├─ utils/
│ ├─ hooks/
│ ├─ contexts/
│ ├─ miscellaneous.ts
- Use Gitmoji to add emojis to your commit messages
- Use the following format for your commit messages
- ✨
feat: add new feature
- 🐛
fix: fix a bug
- ♻️
refactor: refactor code
- 🎨
style: change styling
- 🔥
chore: remove unused code
- 📝
docs: update documentation
- 📦
package: update package
- 🚀
deploy: deploy to production
- 🗑️
waste: remove unused code
- ✨