-
Notifications
You must be signed in to change notification settings - Fork 147
Closed
Labels
Description
Feature Description
Add filters to search projects by technology stack, difficulty level, and category. Allow multiple filters at once to help users find projects matching their interests and skill level.
Proposed Solution
Add filter sidebar/bar on projects page with:
- Technology filter (HTML, CSS, JavaScript, React, etc.)
- Difficulty filter (Beginner, Intermediate, Advanced)
- Category filter (Game, Utility, Tool, etc.)
Filter projects array in real-time using JavaScript. Save filter state in URL for sharing.
// Filter example
const filtered = projects.filter(p =>
selectedTechs.includes(p.tech) &&
selectedDifficulty === p.difficulty
);Alternatives Considered
No response
Mockups/Screenshots
No response
Contribution
- I would like to work on this feature
Reactions are currently unavailable