Skip to content

Commit 23ec205

Browse files
authored
Merge branch 'develop' into #118-Serve-Images-from-CDN-instead-of-locally
2 parents a293469 + defd109 commit 23ec205

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

CONTRIBUTING.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,20 @@ npm run dev
101101
- Open this directory in your favorite text editor / IDE, and see your changes live by visiting `localhost:3000` from your browser
102102
- Pro Tip: Explore scripts within `package.json` for more build options
103103

104-
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).
104+
1. Add changes made to the repo addressing an issue
105+
```
106+
git add [file_name]
107+
```
108+
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).
105109

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

110-
4. Push to your GitHub account
114+
1. Push to your GitHub account
111115

112116
```
113-
$ git push
117+
$ git push -u origin [feature_branch]
114118
```
115119

116120
### Submit your Pull Request (PR)🚀

next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const nextConfig = {
77
dirs: ['src', 'e2e'],
88
},
99
images: {
10-
domains: ['bit.ly','res.cloudinary.com'],
10+
domains: ['bit.ly', 'res.cloudinary.com'],
1111
},
1212
};
1313

src/components/Events/Events.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ const events: EventData[] = [
1616
title: 'Weekly Online Standups',
1717
description:
1818
'Weekly open calls in the community’s Telegram group discussing industry-related topics.',
19-
image_url: 'https://res.cloudinary.com/reactjs-devs-ke/image/upload/v1678532588/website-images/learning-image_eylqwm.jpg',
19+
image_url: 'https://res.cloudinary.com/reactjs-devs-ke/image/upload/v1678532589/website-images/weekly_standups_lg3rth.jpg'
2020
target: 'https://bit.ly/joinreactdevske',
2121
},
2222
{
2323
id: 3,
2424
title: 'Community Power Sessions',
2525
description:
2626
'Community members meet and share technical concepts with other members of the community.',
27-
image_url: '/images/community_sessions.jpg',
27+
image_url: 'https://res.cloudinary.com/reactjs-devs-ke/image/upload/v1678532589/website-images/community_sessions_xsyd8d.jpg',
2828
target: 'https://www.youtube.com/channel/UC9_eVcPBk4T-DcZLHpQfy4w/videos',
2929
},
3030
{

0 commit comments

Comments
 (0)