diff --git a/.gitignore b/.gitignore
index 4d29575..c067634 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,23 +1,23 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-
-# testing
-/coverage
-
-# production
-/build
-
-# misc
-.DS_Store
-.env.local
-.env.development.local
-.env.test.local
-.env.production.local
-
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# production
+/build
+
+# misc
+.DS_Store
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
diff --git a/README.md b/README.md
index 9b74ece..3a57a2f 100644
--- a/README.md
+++ b/README.md
@@ -1,523 +1,523 @@
-
-
-
-
-# LAB | React Bulma Components
-
-
-
-## Introduction
-
-
-
-Do you know [Bulma](https://bulma.io/), a very nice alternative to Bootstrap as a CSS framework? We are going to create a simple website with Bulma and React!
-
-
-
-## Setup
-
-
-
-- Fork this repo
-
-- Clone this repo
-
-- Open the LAB and start:
-
-
-
-```bash
-
-$ cd lab-bulma-components
-
-$ npm install
-
-$ npm start
-
-```
-
-
-
-## Submission
-
-
-
-- Upon completion, run the following commands:
-
-
-
-```bash
-
-git add .
-
-git commit -m "done"
-
-git push origin master
-
-```
-
-
-
-- Create a Pull Request so we can check your work.
-
-
-
-## Getting Started
-
-
-
-Clean the `App.js` component so that it has the following structure:
-
-
-
-```jsx
-
-// src/App.js
-
-import "./App.css";
-
-
-
-function App() {
-
-return
;
-
-}
-
-export default App;
-
-```
-
-
-
-### Bulma installation
-
-
-
-To get Bulma, install the npm package:
-
-
-
-```
-
-$ npm install bulma
-
-```
-
-
-
-You will have to import Bulma CSS in the root component App.js. You can do it with the following line:
-
-
-
-```javascript
-
-import "bulma/css/bulma.css";
-
-```
-
-
-
-## Instructions
-
-
-
-### Iteration 1 | `Navbar` component
-
-
-
-To kick-off, create a new folder `src/components/` and inside it create two files:
-
-
-
-- `src/components/Navbar.js` and
-
-- `src/components/Navbar.css`.
-
-
-
-
-
-
-
-This component should display a link to "Home", "Login" and "Signup" like in the following example:
-
-
-
-
-
-
-
-To help you, you can use the code from the [Bulma Transparent Navbar](https://bulma.io/documentation/components/navbar/#transparent-navbar).
-
-
-
-In the end, import the component and render it in the src/App.js.
-
-
-
-
-
-
-
-### Iteration 2 | `FormField` component
-
-
-
-Following the previous example, inside the folder `src/components/` create two new files:
-
-
-
-- `src/components/FormField.js` and
-
-
-
-- `src/components/FormField.css`.
-
-
-
-Your task is to create a new component `FormField`. We want the component to be reusable and allow us to create custom inputs. The component should be customizable through props. You should set the **label**, **type**, and **placeholder** of the input based on the props.
-
-
-
-
-
-
-
-Once ready, we will use the component in the following way:
-
-
-
-```jsx
-
-// JSX version
-
-
-
-
-
-
-
-```
-
-
-
-The above component instances should render the following content in the DOM:
-
-
-
-```html
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-```
-
-
-
-Which should be visually displayed in the following way:
-
-
-
-
-
-
-
-The tag `label` and the input attributes `type` and `placeholder` should be set with the values coming from the props. After you've finished creating the component, import it and render it in App.js.
-
-
-
-If you get stuck, feel free to check the hint provided below.
-
-
-
-
-
-
-
-Hint
-
-
-
-```jsx
-
-function FormField(props) {
-
-return (
-
-
- {/* some other code goes here */}
-
-);
-
-}
-
-```
-
-
-
-
-
-
-
-
-
-
-
-### Iteration 3 | Signup Form Component
-
-
-
-In the `src/components/` folder, create a new component `SignupForm.js` that contains:
-
-
-
-- A `Navbar`
-
-
-
-- A `