Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add responsive cards grid project to beginner #803

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
31 changes: 31 additions & 0 deletions Projects/1-Beginner/Responsive-Cards-Grid.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Key Value

**Tier:** 1-Beginner

Create a simple web application that displays a responsive grid of cards.
Each card should contain an image and some text information.
The grid should automatically adjust the number of cards displayed per row based on the screen size, providing a seamless user experience on both desktop and mobile devices.

## User Stories

- [ ] User can see a grid of cards on the web page.
- [ ] User can click on a card to view more details in another page/modal or open a related link.
- [ ] User can see the grid layout adapt to the screen size. For instance, on a wide screen, it might display 4 cards in a row, but on a narrow screen, it could display 2 cards in a row. For small screens, show 1 card in a row.

## Bonus features

- [ ] User can filter and search for specific cards within the grid using a search bar.
- [ ] User can customize the appearance of the cards, such as changing the card background color etc.
- [ ] User can sort the cards based on different criteria (e.g., alphabetical order, date, popularity).
- [ ] User can dynamically add and remove cards from the grid through a user-friendly interface.
- [ ] Try doing it without using Media Queries 🤪

## Useful links and resources
This beginner project will help contributors learn about responsive web design, working with grids and cards, and handling user interactions. It's a great starting point for those who want to get familiar with basic web development concepts. Here are some useful resources to get you started.

- [MDN Docs](https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Grids)
- [Kevin Powell Tutorial Youtube](https://www.youtube.com/watch?v=sKFW3wek21Q&ab_channel=KevinPowell)

## Example projects

[Codepen Project](https://codepen.io/brixiobodino/pen/NWgobwQ)