Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,16 +101,20 @@ npm run dev
- Open this directory in your favorite text editor / IDE, and see your changes live by visiting `localhost:3000` from your browser
- Pro Tip: Explore scripts within `package.json` for more build options

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).
1. Add changes made to the repo addressing an issue
```
git add [file_name]
```
2. 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).

```
$ git commit -m "brief description of changes [Fixes #1234]"
```

4. Push to your GitHub account
1. Push to your GitHub account

```
$ git push
$ git push -u origin [feature_branch]
```

### Submit your Pull Request (PR)🚀
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const nextConfig = {
dirs: ['src', 'e2e'],
},
images: {
domains: ['bit.ly'],
domains: ['bit.ly', 'res.cloudinary.com'],
},
};

Expand Down
2 changes: 1 addition & 1 deletion src/components/Events/Events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const events: EventData[] = [
title: 'Weekly Online Standups',
description:
'Weekly open calls in the community’s Telegram group discussing industry-related topics.',
image_url: '/images/weekly_standups.jpg',
image_url: 'https://res.cloudinary.com/reactjs-devs-ke/image/upload/v1678532589/website-images/weekly_standups_lg3rth.jpg',
target: 'https://bit.ly/joinreactdevske',
},
{
Expand Down