Skip to content

Commit de62d94

Browse files
Fix scroll-x bug and update README
1 parent 641f45b commit de62d94

File tree

7 files changed

+15
-22
lines changed

7 files changed

+15
-22
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2222
### Fixed
2323

2424
- updated Next.js from 10.0.0 to 12.0.10
25+
- fixed scroll-x added by the layout container, adjust README

README.md

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
![Web Developer Path Logo](/images-web-dev-path/web-dev-path-logo.png)
1+
![Web Developer Path header](/images-readme/header-readme.png)
2+
3+
<br />
24

35
# Web Developer Path
46

@@ -12,15 +14,18 @@ If you are an experienced and a patient-lovely developer, a true rockstar who wa
1214

1315
<br />
1416

15-
# Slack
17+
## How to get started?
1618

17-
Reach out on [our channel](https://join.slack.com/t/webdevpath/shared_invite/zt-xqqgwwo5-a09BSVWC9ZrHmS6RaMBzVw)!
19+
Just reach out on [slack](https://join.slack.com/t/webdevpath/shared_invite/zt-xqqgwwo5-a09BSVWC9ZrHmS6RaMBzVw)!
20+
There is where we get together and learn from each other. Once on our channel, someone will help you out, we've got you.
1821

1922
<br />
2023

21-
# Quickstart
24+
## Quickstart
2225

23-
To run this project locally do the following steps:
26+
After talking to us on Slack and deciding this project is your "cup of tea", you'll be added to the project as a collaborator. That's when you'll have be able to get your Pull requests reviewed and merged.
27+
28+
This is how to get started locally:
2429

2530
- [Git clone this repository](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github/cloning-a-repository)
2631
- Run `npm install`
@@ -29,25 +34,20 @@ To run this project locally do the following steps:
2934

3035
<br />
3136

32-
# What if I don't know what to do after cloning the repo?
33-
34-
Just reach out on [slack](https://join.slack.com/t/webdevpath/shared_invite/zt-xqqgwwo5-a09BSVWC9ZrHmS6RaMBzVw)! Someone will help you out, we've got you.
35-
36-
<br />
37-
38-
# Resources
37+
## Resources
3938

4039
Here you will find content and resources related to courses and practical steps to land your first job as a web developer.
4140

4241
## Courses and Certifications
4342

44-
- **Git**
43+
- **Git and GitHub**
4544

4645
- [Git Official Basics](https://git-scm.com/book/en/v2)
4746
- [Git Basis by Colt Steele](https://www.youtube.com/watch?v=USjZcfj8yxE&t=14s)
4847
- [Git and GitHub for Beginners - Crash Course by freeCodeCAmp](https://www.youtube.com/watch?v=RGOj5yH7evk)
4948
- [GitHub Tutorial 2020 - Beginner's Training Guide](https://www.youtube.com/watch?v=iv8rSLsi1xo)
5049
- [GitHub Markdown](https://guides.github.com/features/mastering-markdown/)
50+
- [How to review a PR](https://www.youtube.com/watch?v=lSnbOtw4izI&t=187s)
5151

5252
* **Harvard**
5353

@@ -64,6 +64,7 @@ Here you will find content and resources related to courses and practical steps
6464
- _**React**_
6565
- [React Handbook for Beginners](https://www.freecodecamp.org/news/react-beginner-handbook/)
6666
- [React Functional Components, Props, and JSX – React.js Tutorial for Beginners](https://www.freecodecamp.org/news/react-components-jsx-props-for-beginners/)
67+
- [Next.js crash course series](https://www.youtube.com/watch?v=A63UxsQsEbU)
6768

6869
* **PHP**
6970

images-readme/header-readme.png

35.2 KB
Loading

images-web-dev-path/pr-example.png

-160 KB
Binary file not shown.
-59.2 KB
Binary file not shown.

styles/Layout.module.scss

-7
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,10 @@
22

33
.container {
44
min-height: 100vh;
5-
padding: 0 0.5rem;
65
width: 100%;
76
margin: 0 auto;
87
}
98

109
.main {
1110
padding: 3rem 0;
1211
}
13-
14-
@media (min-width: $desktop-breakpoint) {
15-
.container {
16-
width: 80%;
17-
}
18-
}

styles/TwoColumn.module.scss

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
@use './mixins' as *;
33

44
.container {
5-
width: 100vw;
6-
margin: 0 calc(50% - 50vw);
75
background-color: #8cd5e8;
86

97
.inner {

0 commit comments

Comments
 (0)