Skip to content

Commit 3c75730

Browse files
Update README.md
1 parent 09700cf commit 3c75730

File tree

1 file changed

+42
-11
lines changed

1 file changed

+42
-11
lines changed

README.md

+42-11
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323

2424
The challenge is to create a Recipe Page Component, a webpage showcasing recipes in a structured list manner with proper steps and indentation marked for an in-depth explanation of the processes involved at each step, accompanied by images for users to follow along. Users should be able to see a centralized responsive page, ensuring that the structure of the webpage and images are visible wide and clear in the proper format and order.
2525

26+
Users should be able to:
27+
28+
- View the optimal layout for the site depending on their device's screen size
29+
- See hover states for all interactive elements on the page
30+
2631
### How to setup the project
2732

2833
To set up the project locally, follow these steps:
@@ -36,7 +41,7 @@ To set up the project locally, follow these steps:
3641

3742
### Screenshot
3843

39-
![Screenshot](./screenshot.jpg)
44+
![Design Preview](./design/desktop-design.jpg)
4045

4146
### Links
4247

@@ -51,32 +56,58 @@ To set up the project locally, follow these steps:
5156
- CSS3
5257
- JavaScript
5358

59+
You will find all the required assets in the `/design` folder. The assets are already optimized.
60+
61+
There is also a `style-guide.md` file containing the information you'll need, such as color palette and fonts.
62+
5463
### What I learned
5564
56-
- Highlight key learnings from the project
65+
This project is the second project that I am making which further has allowed me to learn about further advanced concepts like hover states, centering div inside parent element, flexbox etc as shown in code snippet below-
66+
67+
```css
68+
.mainframe {
69+
margin: auto;
70+
display: flex;
71+
justify-content: center;
72+
/* align-items: center; */
73+
flex-direction: column;
74+
width: 50%;
75+
padding: 15px;
76+
margin-top: 7rem;
77+
margin-bottom: 7rem;
78+
background-color: var(--rose-white);
79+
border-radius: 12px;
80+
box-shadow: 8px 8px 17px rgba(0, 0, 0, 0.244);
81+
}
82+
```
5783
5884
### Continued development
5985
60-
- Outline areas for future development or learning
86+
The continuously learning journey of a programmer never ends. This project made me realize that there are many concepts that I need to work upon including fundamentals like flex-box and its properties, to more complex concepts like working with fetch and async await in javascript. These areas are some that I think I need to work more upon in the upcoming future as they highlight some of the most significant regions of web development that are important for every developer to know of.
87+
88+
These key points mentioned here will help me grow accountable and consistent towards improving at writing good quality code and be a successful full stack developer one day.
6189
6290
### Useful resources
6391
64-
- List helpful resources used in the project
92+
- [Harkirat Singh course notes](https://github.com/SartHak-0-Sach/harkirat-singh-course_code_and_notes) - I have added notes of all lectures along with code and lecture insights of all weeks along with bonus lectures to help you all as much as I can.
93+
- [My development code and notes](https://github.com/SartHak-0-Sach/cwh-web-dev-playlist_code_and_notes) - These are my notes that I made while working on my development skills in initial days and did these courses. Make sure to star the repository if you like it.✨💫
94+
- [MDN documentation hover state for CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/:hover) - This is an amazing article which helped me finally understand hover states. I'd recommend it to anyone still learning this concept.
6595

6696
## Author
6797

68-
- Sarthak Sachdev
69-
- Portfolio Website: [itsmesarthak.netlify.app](https://itsmesarthak.netlify.app/)
70-
- Twitter: [@sarthak_sach69](https://twitter.com/sarthak_sach69)
98+
<b><strong>Sarthak Sachdev</strong></b>
99+
- Website - [Sarthak Sachdev](https://itsmesarthak.netlify.app/)
100+
- LeetCode - [@sarthak_sachdev](https://leetcode.com/u/sarthak_sachdev/)
101+
- Twitter - [@sarthak_sach69](https://www.twitter.com/sarthak_sach69)
71102

72103
## Acknowledgments
73104

74-
- Mention any acknowledgments or credits for resources used in the project
105+
I feel like the solutions provided on the website and the continuous doubt solving by industry experts on discord for free is something that is unmatched by anyone else and need to be acknowledged for their efforts in improving me as a developer by suggesting the best practices in your respective tech stack.
75106

76107
## Got feedback for me?
77108

78-
I love receiving feedback! I'm always looking to improve my challenges and my platform. So if you have anything you'd like to mention, please email me at saarsaach[at]gmail[dot]com.
109+
I love receiving feedback! I am always looking to improve my code and take up new innovative ideas to work upon. So if you have anything you'd like to mention, please email 'hi' at saarsaach30[at]gmail[dot]com.
79110
80-
If you found this project helpful, consider sharing it with others to spread the knowledge!
111+
If you liked this project make sure to spread the word and share it with all your friends.
81112
82-
**Happy cooking!** 🍳🚀
113+
**Happy cooking!** ☺️🚀

0 commit comments

Comments
 (0)