Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links #152

Merged
merged 1 commit into from
Jul 21, 2024
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ A community-driven initiative built & maintained by the community for the commun
Need info?

Check the [website](https://yfosp.netlify.app/)
| or [Create an issue](https://github.com/Your-First-Open-Source-Project/main-website/issues/new)
| or [Feature request?](https://github.com/Your-First-Open-Source-Project/main-website/issues/new)
| or [Create an issue](https://github.com/yfosp/main-website/issues/new)
| or [Feature request?](https://github.com/yfosp/main-website/issues/new)
| Support us on [GitHub sponsors](https://github.com/sponsors/melvincwng)

## Getting Started 🥳
Expand All @@ -36,7 +36,7 @@ Shoutout to our [contributors](https://yfosp.netlify.app/contributors) 🎉

## How to contribute? ⭐

Before making any contributions, please take a look at our [Community Guidelines](https://yfosp.netlify.app/community-guidelines) and take a look at the [existing Issues](https://github.com/Your-First-Open-Source-Project/main-website/issues) or create a [new issue](https://github.com/Your-First-Open-Source-Project/main-website/issues/new)!
Before making any contributions, please take a look at our [Community Guidelines](https://yfosp.netlify.app/community-guidelines) and take a look at the [existing Issues](https://github.com/yfosp/main-website/issues) or create a [new issue](https://github.com/yfosp/main-website/issues/new)!

Wanna make a contribution but don't know how? Please follow the steps below.

Expand All @@ -50,8 +50,8 @@ Wanna make a contribution but don't know how? Please follow the steps below.
`git config --global user.email "<your-email-here>"`- replace the `<placeholder>` with the real values (your email address should match the one with which you signed up for your GitHub account)

2. Fork this repository. This will create a copy of this repo in your GitHub account:
* Open [Your-First-Open-Source-Project/main-website](https://github.com/Your-First-Open-Source-Project/main-website) (this repository)
* Select **Fork** and * Make a [Fork](https://github.com/Your-First-Open-Source-Project/main-website/fork) --> The URL of your fork is now `https://github.com/<YOUR GITHUB ACCOUNT>/main-website`
* Open [yfosp/main-website](https://github.com/yfosp/main-website) (this repository)
* Select **Fork** and * Make a [Fork](https://github.com/yfosp/main-website/fork) --> The URL of your fork is now `https://github.com/<YOUR GITHUB ACCOUNT>/main-website`

3. Clone the repository

Expand All @@ -75,7 +75,7 @@ Wanna make a contribution but don't know how? Please follow the steps below.
## Status 🌐
- The community website is **fully developed** and built using **Next.js & TypeScript**
- Enhancements or bug fixes to this community codebase are still accepted
- Don't forget to **follow me [@melvincwng](https://github.com/melvincwng)**, **star this repo**, and **[join/follow our organization](https://github.com/Your-First-Open-Source-Project)**
- Don't forget to **follow me [@melvincwng](https://github.com/melvincwng)**, **star this repo**, and **[join/follow our organization](https://github.com/yfosp)**

<h1 align='center'>
<i>Stay awesome & Happy Hacktoberfest </i>
Expand Down
2 changes: 1 addition & 1 deletion community-website/pages/community-guidelines.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const CommunityGuidelines: NextPage = () => {

<h1 className={styles.title}>
<a
href="https://github.com/Your-First-Open-Source-Project/main-website/blob/main/COMMUNITY_GUIDELINES.md"
href="https://github.com/yfosp/main-website/blob/main/COMMUNITY_GUIDELINES.md"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
2 changes: 1 addition & 1 deletion community-website/pages/community-members.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const CommunityMembers: NextPage = () => {

<h1 className={styles.title}>
<a
href="https://github.com/orgs/Your-First-Open-Source-Project/people"
href="https://github.com/orgs/yfosp/people"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
2 changes: 1 addition & 1 deletion community-website/pages/contributors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Contributors: NextPage = () => {

<h1 className={styles.title}>
<a
href="https://github.com/Your-First-Open-Source-Project/main-website/blob/main/CONTRIBUTORS.md"
href="https://github.com/yfosp/main-website/blob/main/CONTRIBUTORS.md"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
2 changes: 1 addition & 1 deletion community-website/pages/educational-resources.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const EducationalResources: NextPage = () => {

<h1 className={styles.title}>
<a
href="https://github.com/Your-First-Open-Source-Project/aws-resources"
href="https://github.com/yfosp/aws-resources"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
4 changes: 2 additions & 2 deletions community-website/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const Home: NextPage = () => {
<h1 className={styles.title}>
Welcome to{" "}
<a
href="https://github.com/Your-First-Open-Source-Project/main-website"
href="https://github.com/yfosp/main-website"
target="_blank"
rel="noopener noreferrer"
>
Expand Down Expand Up @@ -111,7 +111,7 @@ const Home: NextPage = () => {
</Link>

<Link
href="https://github.com/Your-First-Open-Source-Project"
href="https://github.com/yfosp"
passHref
>
<a
Expand Down
Loading