A very basic job lisitng site. I made this while learning routing in React using react router dom (version 6). Don't focus on the writings, the main focus was to learn routing in React 😅.
Vite
React.js
TailwindCSS
To run the project in your local environment, follow these steps:
- Clone the repository to your local machine.
- Navigate to the project directory and run
npm install
oryarn
to install the required dependencies. - Start the Faqs json file with
npx json-server -p 4001 -w ./data/faq.json
(-p 4001 should be an empty address/port, or change to any empty one). - Do the same for career json file with
npx json-server -p 4000 -w ./data/db.json
(againm the address/port should be empty or change to any empty one) - Start the project with
npm run dev
oryarn dev
. - Open http://localhost:5173 (or the address displayed in your console) in your web browser to view the application.