Sriparno08 / Openpedia

The Open Source Guide!
https://openpedia.netlify.app/
MIT License
77 stars 102 forks source link

Chore: Fix 'Open Source Programs' Link in 'Categories' Section #381

Closed Sriparno08 closed 1 month ago

Sriparno08 commented 2 months ago

Category

Description

We need to fix a broken link in the 'Categories' section of the landing page that heads to the 'Open Source Programs' page.

Step 1: Go to client/index.html Step 2: Find the following link under <section class="categories">...</section>

<a href="./opensource_programs/index.html" class="category-link">More</a>

Step 3: Change it to

<a href="./pages/open-source-programs/index.html" class="category-link">More</a>
Kaustav2410 commented 1 month ago

Can you assign me this issue?

Sriparno08 commented 1 month ago

Sure. You're assigned, @Kaustav2410!

Sriparno08 commented 1 month ago

Hey @Kaustav2410, are you still working on this issue? If you are, please open a PR!

SeanAverS commented 1 month ago

Hello. is this issue available? I would like to work on it please.

Sriparno08 commented 1 month ago

Hey @SeanAverS, @Kaustav2410 is currently assigned to this issue. If he doesn't respond for too long, you will be assigned.

Kaustav2410 commented 1 month ago

@Sriparno08 I am getting this error remote: Permission to Sriparno08/Openpedia.git denied to Kaustav2410. fatal: unable to access 'https://github.com/Sriparno08/Openpedia.git/': The requested URL returned error: 403

Sriparno08 commented 1 month ago

Hey @Kaustav2410, you have probably cloned this repository to your computer, made changes to the local version (the one on your computer) and pushed them to the remote version (the one that you have cloned). This is not allowed, which is probably the reason behind you encountering the error.

Here are the actual steps:

  1. Fork this repository to your own account
  2. Clone the forked repository to your computer
  3. Make suggested changes to the local version
  4. Add and commit the changes
  5. Push the changes to the remote version (the forked repository on your own account)
  6. Open a pull request

If you haven't gone through this cycle before, you can learn it from the First Contributions repository. It teaches you all the necessary steps that you need to follow to open a pull request.