Skip to content

Commit 002f504

Browse files
authored
Merge pull request #59 from dmuyah/57@muyah
57@muyah
2 parents 2d96591 + 7f4822a commit 002f504

5 files changed

Lines changed: 57 additions & 14 deletions

File tree

CONTRIBUTING.md

Lines changed: 32 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,28 @@ Please note we have a [code of conduct](https://github.com/reactdeveloperske/rea
88

99
- Create a [new issue](https://github.com/reactdeveloperske/reactdevske-website/issues)
1010
- Comment on the issue (if you'd like to be assigned to it) - that way the issue can be assigned to you.
11+
12+
### Open issues
13+
- Go to [open issues](https://github.com/reactdeveloperske/reactdevske-website/issues)
14+
- select an issue of your choice that is `open` or `need help` or is `up-for-grabs` and is not assigned.
15+
- Comment on the issue (if you'd like to be assigned to it) - that way the issue can be assigned to you.
16+
1117

1218
### Fork the repository (repo)
1319

1420
- If you're not sure, here's how to [fork the repo](https://help.github.com/en/articles/fork-a-repo)
1521

1622

17-
### Set up your local environment (optional)
23+
### Set up your local environment (optional)
1824

1925
If you're ready to contribute and create your PR, it will help to set up a local environment so you can see your changes.
2026

21-
1. Set up your development environment
27+
1. Set up your development environment
28+
- install your favorite text editor/IDE
29+
- install [Nodejs](nodejs.org)
30+
31+
32+
<br>
2233

2334
2. Clone your fork
2435

@@ -49,37 +60,47 @@ $ git merge upstream/develop
4960

5061
3. Install dependencies
5162

52-
```
53-
$ yarn
54-
```
63+
```
64+
$ yarn install
65+
```
5566
or
5667

5768
```
5869
$ npm install
5970
```
71+
<br>
72+
73+
### Make awesome changes!
74+
75+
<br>
76+
6077

61-
### Make awesome changes!
6278

6379
1. Create new branch for your changes
6480

6581
```
6682
$ git checkout -b new_branch_name
6783
```
6884

69-
2. Start developing!
85+
2. start development server
7086

7187
```
72-
$ yarn start
88+
$ yarn run dev
7389
```
7490
or
7591
```
76-
npm start
92+
npm run dev
7793
```
7894

95+
<br>
96+
97+
### Start developing!
98+
<br>
99+
79100
- Open this directory in your favorite text editor / IDE, and see your changes live by visiting `localhost:3000` from your browser
80101
- Pro Tip: Explore scripts within `package.json` for more build options
81102

82-
3. Commit and prepare for pull request (PR). In your PR commit message, reference the issue it resolves (see [how to link a commit message to an issue using a keyword](https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword).
103+
1. Commit and prepare for pull request (PR). In your PR commit message, reference the issue it resolves (see [how to link a commit message to an issue using a keyword](https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword).
83104

84105
```
85106
$ git commit -m "brief description of changes [Fixes #1234]"
@@ -91,7 +112,7 @@ $ git commit -m "brief description of changes [Fixes #1234]"
91112
$ git push
92113
```
93114

94-
### Submit your PR
115+
### Submit your Pull Request (PR)🚀
95116

96117
- After your changes are commited to your GitHub fork, submit a pull request (PR) to the `develop` branch of the `reactdeveloperske/reactdevske-website` repo
97118
- In your PR description, reference the issue it resolves (see [linking a pull request to an issue using a keyword](https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword))

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 React Developers Kenya
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

components/Navbar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const Navbar = () => {
1818
<header className="px-[181px] w-full shadow-md bg-white">
1919
<nav className="nav py-4 flex justify-between items-center">
2020
<div>
21-
<Link href={HOME}>
21+
<Link href={HOME}>
2222
<a>
2323
<Image src={logo} alt="reactdevske logo" width={137} height={60} />
2424
</a>

pages/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function Home() {
2525
React Developer Community Kenya
2626
</h1>
2727
<p className="text-center text-xl text-white font-montserrat">
28-
A Community of Reactjs developers in Kenya
28+
A Community of Reactjs developers in Kenya
2929
</p>
3030
<div className="flex flex-col justify-center content-center">
3131
<Image

styles/Home.module.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@
106106
.logo {
107107
height: 1em;
108108
margin-left: 0.5rem;
109-
}
109+
}
110110

111+
111112
@media (max-width: 600px) {
112113
.grid {
113114
width: 100%;

0 commit comments

Comments
 (0)