freeCodeCamp/curriculum/challenges/german/10-coding-interview-prep/take-home-projects/build-a-pinterest-clone.md

38 lines
1.6 KiB
Markdown

---
id: bd7158d8c443eddfaeb5bdee
title: Build a Pinterest Clone
challengeType: 4
forumTopicId: 302352
dashedName: build-a-pinterest-clone
---
# --description--
**Objective:** Build an app that is functionally similar to this: <a href="https://build-a-pinterest-clone.freecodecamp.rocks/" target="_blank" rel="noopener noreferrer nofollow">https://build-a-pinterest-clone.freecodecamp.rocks/</a>.
Erfülle die folgenden User Stories und bestehe alle Tests. Verwende Bibliotheken und APIs deiner Wahl. Gib dem Ganzen deinen persönlichen Stil.
**User Story:** As an unauthenticated user, I can login with GitHub.
**User Story:** As an authenticated user, I can link to images.
**User Story:** As an authenticated user, I can delete images that I've linked to.
**User Story:** As an authenticated user, I can see a Pinterest-style wall of all the images I've linked to.
**User Story:** As an unauthenticated user, I can browse other users' walls of images.
**User Story:** As an authenticated user, if I upload an image that is broken, it will be replaced by a placeholder image. (can use jQuery broken image detection)
**Hint:** Masonry.js is a library that allows for Pinterest-style image grids.
Once you've finished implementing these user stories, enter the URL to your live app and, optionally, your GitHub repository. Then click the "I've completed this challenge" button.
You can get feedback on your project by sharing it on the <a href="https://forum.freecodecamp.org/c/project-feedback/409" target="_blank" rel="noopener noreferrer nofollow">freeCodeCamp forum</a>.
# --solutions--
```js
// solution required
```