Skip to content

Commit 08bec57

Browse files
Removing Slack access from site and README
1 parent 5500e88 commit 08bec57

File tree

4 files changed

+21
-28
lines changed

4 files changed

+21
-28
lines changed

.env-template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ To get rid of the `console.log` errors related to MailChimp and reCapctha:
44
- 2 Create your local `.env` with the credentials that will not be tracked into our repository for security reasons
55

66
NEXT_PUBLIC_MAILCHIMP_URL={Add the url link}
7-
NEXT_PUBLIC_RECAPTCHA_SITE={Add the key}
7+
NEXT_PUBLIC_RECAPTCHA_SITE_KEY={Add the key}
88
RECAPTCHA_SECRET_KEY={Add the key}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ If you are an experienced and a patient-lovely developer, a true rockstar who wa
1616

1717
## How to get started?
1818

19-
Please start watching carefully [our guideline tutorials](https://github.com/Web-Dev-Path/web-dev-path/wiki/Getting-Started), then, reach out on [Slack](https://join.slack.com/t/webdevpath/shared_invite/zt-xqqgwwo5-a09BSVWC9ZrHmS6RaMBzVw). There, is where we get together and learn from each other. Once on our `#general` channel, you'll see a pinned message with some guidelines.
19+
Please start watching carefully [our guideline tutorials](https://github.com/Web-Dev-Path/web-dev-path/wiki/Getting-Started). Then, if you think this is the right project for you, reach out by [email](mailto:hello@webdevpath.co) explaining why do you want to become a project collaborator. Once in the project, you'll have access to our Slack channel where we get together and make things happen!
2020

2121
<br />
2222

2323
## Quickstart
2424

25-
After talking to us on Slack and deciding this project is your "cup of tea", you'll be added to the project as a collaborator. That's when you'll be able to get your Pull Requests reviewed and merged.
25+
After talking to us by email, you'll be added to the project as a collaborator. That's when you'll be able to get your Pull Requests reviewed and merged.
2626

2727
This is how to get started locally:
2828

components/layout/Nav.js

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -61,25 +61,23 @@ export default function Nav() {
6161
className={`${styles.nav__links} ${active ? styles.active : ''}`}
6262
>
6363
{linksNav.map(({ text, href, id }) => {
64-
if (text !== 'Join us') {
65-
return (
66-
<li className={styles.nav__item} key={id}>
67-
<Link href={href}>
68-
<a
69-
className={`${styles.nav__link} ${
70-
router.pathname == href ? `${styles.current}` : ''
71-
}`}
72-
title={text}
73-
>
74-
{text}
75-
</a>
76-
</Link>
77-
</li>
78-
);
79-
}
64+
return (
65+
<li className={styles.nav__item} key={id}>
66+
<Link href={href}>
67+
<a
68+
className={`${styles.nav__link} ${
69+
router.pathname == href ? `${styles.current}` : ''
70+
}`}
71+
title={text}
72+
>
73+
{text}
74+
</a>
75+
</Link>
76+
</li>
77+
);
8078
})}
8179
<li className={styles.nav__item}>
82-
<Link href='https://webdevpath.slack.com/join/shared_invite/zt-xqqgwwo5-a09BSVWC9ZrHmS6RaMBzVw#/shared-invite/email'>
80+
<Link href='mailto:hello@webdevpath.co?subject=Project collaborator application'>
8381
<a
8482
className={`${styles.nav__button} ${
8583
active ? styles.active : ''

utils/links.js

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
export const linksNav = [
2-
{
3-
id: 1,
4-
text: 'Join us',
5-
href: 'https://webdevpath.slack.com/join/shared_invite/zt-xqqgwwo5-a09BSVWC9ZrHmS6RaMBzVw#/shared-invite/email',
6-
},
7-
{ id: 2, text: 'About', href: '/about' },
8-
{ id: 3, text: 'Blog', href: '/blog' },
9-
{ id: 4, text: 'Contact', href: '/contact' },
2+
{ id: 1, text: 'About', href: '/about' },
3+
{ id: 2, text: 'Blog', href: '/blog' },
4+
{ id: 3, text: 'Contact', href: '/contact' },
105
];
116

127
export const linksSocial = [

0 commit comments

Comments
 (0)