diff --git a/README.md b/README.md
index 9ea4e26b3..13c18f6be 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,15 @@
# Happy Thoughts
-Replace this readme with your own information about your project.
-
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
+My own version of Twitter. Consists of a main form with an input, and below the answers in the form are shown.
+Happy, pastel lights colors were used to build the web.
## The problem
-Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next?
+- My third project using React and building different components. Playing around with importing and exporting, writng a clear and easy to follow code using this Java Script library.
+- Second project with the State Hook and the first with the Effect Hook.
+- Fatching data with a public API (this API was shared with other students for the sue of their project).
+- User can write their own happy thoughts and like some of the already published: when the user clicks the heart button on a thought, it sends a POST request (with no body) to the API URL, and the icon changes the color.
## View it live
-Every project should be deployed somewhere. Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about.
+https://flourishing-creponne-c72c1d.netlify.app/
diff --git a/code/package-lock.json b/code/package-lock.json
index f7e97e1e9..fab8e56d2 100644
--- a/code/package-lock.json
+++ b/code/package-lock.json
@@ -9,6 +9,7 @@
"version": "1.0.0",
"dependencies": {
"babel-eslint": "^10.1.0",
+ "date-fns": "^2.29.3",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
@@ -6205,6 +6206,18 @@
"node": ">=10"
}
},
+ "node_modules/date-fns": {
+ "version": "2.29.3",
+ "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz",
+ "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==",
+ "engines": {
+ "node": ">=0.11"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/date-fns"
+ }
+ },
"node_modules/debug": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
@@ -21996,6 +22009,11 @@
"whatwg-url": "^8.0.0"
}
},
+ "date-fns": {
+ "version": "2.29.3",
+ "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz",
+ "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA=="
+ },
"debug": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
diff --git a/code/package.json b/code/package.json
index 68869f589..4cbbdb2d2 100644
--- a/code/package.json
+++ b/code/package.json
@@ -4,6 +4,7 @@
"private": true,
"dependencies": {
"babel-eslint": "^10.1.0",
+ "date-fns": "^2.29.3",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
diff --git a/code/public/index.html b/code/public/index.html
index e6730aa66..5d2442dad 100644
--- a/code/public/index.html
+++ b/code/public/index.html
@@ -13,7 +13,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
-