-
Notifications
You must be signed in to change notification settings - Fork 200
Open
Description
Issue :
The current job list is growing large. Users need better ways to find specific roles based on technical keywords or location.
Improvement :
Implement a client-side search or multi-select filter for the JobListComponent using the tech stack information already available in the repos.csv.
File Path : open-source-jobs/components/job-list.tsx
Code Idea :
// Inside Joblist Component
const [filter, setFilter] = useState('');
const filteredJobs = releases.filter(job =>
job.name.toLowerCase().includes(filter.toLowerCase()) ||
job.description.toLowerCase().includes(filter.toLowerCase())
);
Reactions are currently unavailable