Skip to content

Commit d02829c

Browse files
fix: changes for grammatical and spelling errors (#818)
Co-authored-by: Tamal Das <tamalcodes@gmail.com>
1 parent b25aa2b commit d02829c

File tree

11 files changed

+59
-57
lines changed

11 files changed

+59
-57
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We are using `pre-commit hooks, linting packages` to make sure that the code is
2323

2424
So whenever you try and make any commit, it will automatically run the `linting` and `prettier` on the staged/changed files and if there are any errors, it will not let you commit the code until you fix those.
2525

26-
Some of them are automatically fixed, while some needs manual fixing.
26+
Some of them are automatically fixed, while some need manual fixing.
2727

2828
---
2929
## Issues 👮
@@ -32,7 +32,7 @@ Some of them are automatically fixed, while some needs manual fixing.
3232
#### Creating an issue 📝
3333

3434
- There are different types in the issues section such as `Bug` , `Documentation` , `Feature` . You can choose, create any of the types of issues.
35-
- In case you need to crete something else, you can use the `Other` type. Blank issues are not recommended at all.
35+
- In case you need to create something else, you can use the `Other` type. Blank issues are not recommended at all.
3636
- When creating an issue make sure you fill up the fields properly and also make sure that you are **not raising a duplicate issue.**
3737
- The `labels` are used to categorize the issues and it will be auto added based on the type of issue you are creating.
3838

@@ -41,7 +41,7 @@ Some of them are automatically fixed, while some needs manual fixing.
4141
- Only ask to be assigned 1 issue at a time.
4242
- **Do not** enable GitHub Actions on your fork
4343
- You can assign yourself to an issue if you want to work on it by checking the `I am willing to work on this issue (blank for no)` checkbox.
44-
- Incase someone else has left that box empty, you can assign yourself to that issue by commenting `I would like to work on this issue` on that issue.
44+
- In case someone else has left that box empty, you can assign yourself to that issue by commenting `I would like to work on this issue` on that issue.
4545
- We assign on a **first come first serve basis**.
4646

4747

@@ -57,7 +57,7 @@ Some of them are automatically fixed, while some needs manual fixing.
5757

5858
#### Creating a Pull Request 📝
5959

60-
- Donot raise a PR if you are not assigned to the issue. Donot try and make spam pull requests as you might be **banned** from the organization.
60+
- Do not raise a PR if you are not assigned to the issue. Do not try and make spam pull requests as you might be **banned** from the organization.
6161
- Whenever making a Pull request, make sure you fill up the fields properly.
6262
- We use `Lint PR title` workflow which makes sure that the PR titles are in the correct format. If you are not sure about the format, you can check the `Pull Request Title Format` section below.
6363

rules/BackendSetup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ You must create a `.env` file similar to [.env.example](../.env.example) file, r
3232

3333

3434
## Setting up `razorpay api key`
35-
- Head on to [Razorpay API reference](https://razorpay.com/docs/api) and Sign Up to razor pay rembember you don't need to KYC.
35+
- Head on to [Razorpay API reference](https://razorpay.com/docs/api) and Sign Up to razor pay remember you don't need to KYC.
3636
- Login after Signing Up then you will see this interface, you can use the test mode.
3737

3838
<img width="945" alt="image" src="https://github.com/tejaskh3/Milan/assets/98630752/2de85099-8167-4db2-9fc7-9d539c5bcf64">

rules/CloneSetup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
- After the fork is done, you will be redirected to your forked repo.
1212
- The next step is to clone the repo to your local storage.
13-
- Open your termnial and enter the following command. Remember to replace `YOUR_USERNAME` with your GitHub username.
13+
- Open your terminal and enter the following command. Remember to replace `YOUR_USERNAME` with your GitHub username.
1414

1515
```bash
1616
git clone https://github.com/<YOUR_USERNAME>/Milan.git

rules/FrontendSetup.md

Lines changed: 37 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,37 @@
1-
# Frontend Setup
2-
3-
Follow the below steps to setup the Frontend locally. We are using `npm` as the package manager. So make sure you have `node` and `npm` installed in your system.
4-
5-
**If not installed, please read [installation guide](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).**
6-
## Installing dependencies ⏳
7-
8-
- Open your terminal and navigate to the `Milan` directory.
9-
- Type `npm install` to install all the dependencies.
10-
- Once the installation is done, you can start the frontend server by typing `npm run dev`.
11-
- This should start the frontend server on `localhost:3000`.
12-
13-
## Techstack overview 🌀
14-
15-
- We are currently using `ReactJS v18` along with `vite v3` as the frontend framework.
16-
- We using `Twitter Bootstrap v5` for the styling.
17-
- List of all the dependencies can be found in the `package.json` file.
18-
19-
20-
## Coding standards 🔐
21-
22-
- We are using `ESLint` and `Prettier` for linting and formatting.
23-
- Maintain the same coding standards as the rest of the codebase.
24-
- Follow good naming conventions for the files, variables and functions along with proper documentation (if needed).
25-
- We also use `husky` and `lint-staged` to run the linter and formatter before every commit. Read about this in our [Contributing Guidelines](/CONTRIBUTING.md).
26-
- Maintain a good folder structure, incase you use anu new components or pages make sure you put them in the right folder.
27-
- If you are using any new dependencies, make sure you mention them in the PR.
28-
- If you are using any new Image , compress it using [online tools]("https://www.iloveimg.com/compress-image") and then use it in the project.
29-
- **Remember**, writing readable and clean code while following the coding standards is the best thing for any developer.
30-
## Next steps 🚀
31-
32-
So now you have the the frontend up and running locally. Now you can start working on the issues.
33-
34-
- If you don't need to modify/work on anything related to the backend, you can skip the backend setup and simply setup a `.env` file in the root.
35-
- Inside that `.env` file you can put `VITE_MILANAPI="https://milan-server.vercel.app"`
36-
- If you need your own backend and want to make changes there as well, you can follow [Setting up the backend locally](/rules/BackendSetup.md)
1+
# Frontend Setup
2+
3+
Follow the below steps to setup the Frontend locally. We are using `npm` as the package manager. So make sure you have `node` and `npm` installed in your system.
4+
5+
**If not installed, please read [installation guide](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).**
6+
## Installing dependencies ⏳
7+
8+
- Open your terminal and navigate to the `Milan` directory.
9+
- Type `npm install` to install all the dependencies.
10+
- Once the installation is done, you can start the frontend server by typing `npm run dev`.
11+
- This should start the frontend server on `localhost:3000`.
12+
13+
## Techstack overview 🌀
14+
15+
- We are currently using `ReactJS v18` along with `vite v3` as the frontend framework.
16+
- We using `Twitter Bootstrap v5` for the styling.
17+
- List of all the dependencies can be found in the `package.json` file.
18+
19+
20+
## Coding standards 🔐
21+
22+
- We are using `ESLint` and `Prettier` for linting and formatting.
23+
- Maintain the same coding standards as the rest of the codebase.
24+
- Follow good naming conventions for the files, variables and functions along with proper documentation (if needed).
25+
- We also use `husky` and `lint-staged` to run the linter and formatter before every commit. Read about this in our [Contributing Guidelines](/CONTRIBUTING.md).
26+
- Maintain a good folder structure, incase you use anu new components or pages make sure you put them in the right folder.
27+
- If you are using any new dependencies, make sure you mention them in the PR.
28+
- If you are using any new Image , compress it using [online tools]("https://www.iloveimg.com/compress-image") and then use it in the project.
29+
- **Remember**, writing readable and clean code while following the coding standards is the best thing for any developer.
30+
## Next steps 🚀
31+
32+
So now you have the the frontend up and running locally. Now you can start working on the issues.
33+
34+
- If you don't need to modify/work on anything related to the backend, you can skip the backend setup and simply setup a `.env` file in the root.
35+
- Inside that `.env` file you can put `VITE_MILANAPI="https://milan-server.vercel.app"`
36+
- If you need your own backend and want to make changes there as well, you can follow [Setting up the backend locally](/rules/BackendSetup.md)
37+

src/components/Banners/Banner.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ const Banner = () => {
2121
<br />
2222
MILAN
2323
</h1>
24-
24+
{/* <p className="banner_header2">MILAN</p> */}
2525
<div>
2626
<p className="banner_header3">
2727
We are a hub, trying to connect help and need. Join us and
28-
make earth a better place for all to live!
28+
make the Earth a better place for all to live!
2929
</p>
3030
</div>
3131
<div className="banner_signup_btndiv">

src/components/Events/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const EventsBanner = () => {
2121
>
2222
<h1 className="mb-4">Check out our events!!</h1>
2323
<p className="donate-details">
24-
All our partnered NGOs , hosts various events be it educational,
25-
cleaning mother earth, funding events, health camps and many more !!
24+
All our partnered NGOs, host various events be it educational,
25+
cleaning mother earth, funding events, health camps, and many more!!
2626
</p>
2727
<p>Join us at the events, and help the community !! </p>
2828
<button

src/components/Footer.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,11 @@ const Footer = () => {
206206
href="https://github.com/IAmTamal/Milan"
207207
target="_blank"
208208
rel="noreferrer"
209-
className="underline-animation"
209+
className="underline-animation"
210210
>
211211
here
212212
</a>
213+
213214
</p>
214215
)}
215216
</div>
@@ -298,7 +299,7 @@ const Footer = () => {
298299
Got something to report ?
299300
</h1>
300301
<p className="text-center mb-lg-4" style={{ color: "#d8d7d7" }}>
301-
You can submit a report to us by filling a form below !
302+
You can submit a report to us by filling the form below !
302303
</p>
303304
<div className="d-flex justify-content-center rounded mx-auto">
304305
<button

src/components/Milaninfobanner.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ const Milaninfobanner = () => {
4343

4444
<div>
4545
<p className="mib_header2">
46-
Milan connects over 1000 charities, ngos, individuals with a
46+
Milan connects over 1000 charities, NGOs, and individuals with a
4747
common goal - connecting help with people that needs it. You can
48-
donate, buy for charity, share fundraising events and much more.
48+
donate, buy for charity, share fundraising events, and much more.
4949
</p>
5050
</div>
5151
</div>
@@ -60,8 +60,8 @@ const Milaninfobanner = () => {
6060

6161
<div>
6262
<p className="mib_header2">
63-
Over 80% of our funds comes directly from the love and support
64-
you all show. We also donate directly to emergencies, natural
63+
Over 80% of our funds come directly from the love and support
64+
you all show. We also donate directly to emergencies and natural
6565
disasters. Donations, small or big, can help people in need
6666
survive.
6767
</p>

src/pages/AboutUs.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ export default function AboutUs() {
2222
to English means ‘conjugation’.
2323
</p>
2424
<p className="mt-2">
25-
With Milan we aim at bringing all the various NGOs and donors under
25+
With Milan ,we aim at bringing all the various NGOs and donors under
2626
one single roof to ease the burden of going to find their
2727
appropriate donors and the appropriate communities to donate to.
2828
With the help of our search filters and ask platform, it becomes
29-
easier for the people to find their right community to serve.
29+
easier for the people to find the right community to serve.
3030
</p>
3131
</div>
3232
</div>

src/pages/Donate.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ const Donate = () => {
8080
>
8181
<h1 className="mb-4">Yes, you help live !!</h1>
8282
<p>
83-
Donations does play an important part as our annual funds, donations
84-
from your ends helps thousands of unfortunate people live their
83+
Donations do play an important part in our annual funds, donations
84+
from your end help thousands of unfortunate people live their
8585
lives.
8686
</p>
8787
<p>

0 commit comments

Comments
 (0)