Skip to content

Commit 8ea811a

Browse files
authored
update e-mail address domain
1 parent 8f13797 commit 8ea811a

File tree

3 files changed

+93
-76
lines changed

3 files changed

+93
-76
lines changed

src/pages/faq.js

+42-31
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,70 @@
1-
import React from 'react'
2-
import SEO from '../components/seo'
3-
import Layout from '../containers/layout'
4-
import { Link } from 'gatsby'
5-
import Panel from '../components/Panel'
1+
import React from 'react';
2+
import SEO from '../components/seo';
3+
import Layout from '../containers/layout';
4+
import { Link } from 'gatsby';
5+
import Panel from '../components/Panel';
66

77
const FAQPage = () => {
88
return (
99
<Layout>
1010
<SEO
11-
title="React Robins - FAQ"
12-
description="A supportive community for women and non-binary React enthusiasts"
11+
title='React Robins - FAQ'
12+
description='A supportive community for women and non-binary React enthusiasts'
1313
/>
1414
<main>
1515
<h1 hidden>Welcome to React Robins</h1>
16-
<Panel heading="FAQ"></Panel>
17-
<Panel heading="How do I speak at an upcoming React Ladies event?" id="how-to-speak">
18-
Thank you for your interest in speaking to our community. Please submit a talk proposal
19-
through our{' '}
16+
<Panel heading='FAQ'></Panel>
17+
<Panel
18+
heading='How do I speak at an upcoming React Ladies event?'
19+
id='how-to-speak'
20+
>
21+
Thank you for your interest in speaking to our community. Please
22+
submit a talk proposal through our{' '}
2023
<a
21-
href="/submit-talk"
22-
target="_blank"
23-
title="Form to submit a talk"
24-
rel="noopener noreferrer"
24+
href='/submit-talk'
25+
target='_blank'
26+
title='Form to submit a talk'
27+
rel='noopener noreferrer'
2528
>
2629
form
2730
</a>
2831
. If you have any questions do not hesistate to reach out to us!
2932
</Panel>
30-
<Panel heading="How can I get involved?" id="get-involved">
31-
Check out our page on <Link to="/getting-involved">getting involved</Link> with React
32-
Ladies for more information.
33+
<Panel heading='How can I get involved?' id='get-involved'>
34+
Check out our page on{' '}
35+
<Link to='/getting-involved'>getting involved</Link> with React Ladies
36+
for more information.
3337
</Panel>
34-
<Panel heading="Was React Robins previously React Ladies?" id="get-involved">
35-
Yes! In order to create a more inclusive environment, we changed our name so that we can
36-
be more supportive towards all React enthusiasts.
38+
<Panel
39+
heading='Was React Robins previously React Ladies?'
40+
id='get-involved'
41+
>
42+
Yes! In order to create a more inclusive environment, we changed our
43+
name so that we can be more supportive towards all React enthusiasts.
3744
</Panel>
38-
<Panel heading="Any other questions?" id="questions">
45+
<Panel heading='Any other questions?' id='questions'>
3946
Please send us a message on{' '}
4047
<a
41-
href="https://twitter.com/ReactJSRobins"
42-
rel="noopener noreferrer"
43-
title="Twitter"
44-
target="_blank"
48+
href='https://twitter.com/ReactJSRobins'
49+
rel='noopener noreferrer'
50+
title='Twitter'
51+
target='_blank'
4552
>
4653
Twitter
4754
</a>{' '}
4855
or email us at{' '}
49-
<a href="mailto:[email protected]" rel="noopener noreferrer" title="Email">
50-
56+
<a
57+
href='mailto:[email protected]'
58+
rel='noopener noreferrer'
59+
title='Email'
60+
>
61+
5162
</a>
5263
!
5364
</Panel>
5465
</main>
5566
</Layout>
56-
)
57-
}
67+
);
68+
};
5869

59-
export default FAQPage
70+
export default FAQPage;

src/pages/getting-involved.js

+29-24
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,57 @@
1-
import React from 'react'
2-
import SEO from '../components/seo'
3-
import Layout from '../containers/layout'
4-
import { Link } from 'gatsby'
5-
import Panel, { LargeParagraph } from '../components/Panel'
1+
import React from 'react';
2+
import SEO from '../components/seo';
3+
import Layout from '../containers/layout';
4+
import { Link } from 'gatsby';
5+
import Panel, { LargeParagraph } from '../components/Panel';
66

77
const GettingInvolvedPage = () => {
88
return (
99
<Layout>
1010
<SEO
11-
title="React Robins - Getting Involved"
12-
description="A supportive community for women and non-binary React enthusiasts"
11+
title='React Robins - Getting Involved'
12+
description='A supportive community for women and non-binary React enthusiasts'
1313
/>
1414
<main>
1515
<Panel>
1616
<LargeParagraph>
1717
There are a lot of ways you could get involved with React Robins!
1818
<br />
1919
<br />
20-
If you think you'd like to do this, we'd love to work with you to make it happen -
21-
please contact us via{' '}
20+
If you think you'd like to do this, we'd love to work with you to
21+
make it happen - please contact us via{' '}
2222
<a
23-
href="https://twitter.com/ReactJSRobins"
24-
rel="noopener noreferrer"
25-
title="Twitter"
26-
target="_blank"
23+
href='https://twitter.com/ReactJSRobins'
24+
rel='noopener noreferrer'
25+
title='Twitter'
26+
target='_blank'
2727
>
2828
Twitter
2929
</a>
3030
, or email us at{' '}
31-
<a href="mailto:[email protected]" rel="noopener noreferrer" title="Email">
32-
31+
<a
32+
href='mailto:[email protected]'
33+
rel='noopener noreferrer'
34+
title='Email'
35+
>
36+
3337
</a>
3438
!
3539
</LargeParagraph>
3640
</Panel>
37-
<Panel heading="Getting Involved"></Panel>
41+
<Panel heading='Getting Involved'></Panel>
3842
<p>
39-
We're always looking for new locations to host meetups, as well as folks on the ground to
40-
act as local organizers and MCs.
43+
We're always looking for new locations to host meetups, as well as
44+
folks on the ground to act as local organizers and MCs.
4145
<br />
4246
<br />
43-
Involvement might include working with your employers to provide a space, organizing
44-
catering for meetup attendees, ensuring that there is a livestream or opportunity to
45-
record the speakers, and generally working to ensure that the meetup runs smoothly.
47+
Involvement might include working with your employers to provide a
48+
space, organizing catering for meetup attendees, ensuring that there
49+
is a livestream or opportunity to record the speakers, and generally
50+
working to ensure that the meetup runs smoothly.
4651
</p>
4752
</main>
4853
</Layout>
49-
)
50-
}
54+
);
55+
};
5156

52-
export default GettingInvolvedPage
57+
export default GettingInvolvedPage;

src/pages/report.js

+22-21
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,62 @@
1-
import React from 'react'
2-
import SEO from '../components/seo'
3-
import Layout from '../containers/layout'
4-
import Panel from '../components/Panel'
5-
import { Link } from 'gatsby'
1+
import React from 'react';
2+
import SEO from '../components/seo';
3+
import Layout from '../containers/layout';
4+
import Panel from '../components/Panel';
5+
import { Link } from 'gatsby';
66

77
const Report = () => {
88
const contactInfo = {
9-
email: 'community@reactladies.com',
9+
email: 'community@reactrobins.com',
1010
twitterHandle: '@ReactJSRobins',
11-
githubHandle: 'react-robins'
12-
}
11+
githubHandle: 'react-robins',
12+
};
1313

1414
return (
1515
<Layout>
1616
<SEO
17-
title="React Robins - Code Of Conduct"
18-
description="A supportive community for women and non-binary React enthusiasts"
17+
title='React Robins - Code Of Conduct'
18+
description='A supportive community for women and non-binary React enthusiasts'
1919
/>
2020
<main>
2121
<h1 hidden>Welcome to React Robins</h1>
22-
<Panel heading="Code of Conduct - Report An Issue">
22+
<Panel heading='Code of Conduct - Report An Issue'>
2323
<section
2424
css={`
2525
line-height: 1.5;
2626
`}
2727
>
2828
<p>
29-
We want React Robins to be a safe and inclusive environment. That’s why we ask our
30-
attendees to follow our{' '}
31-
<Link to="/code-of-conduct" title="Code of Conduct">
29+
We want React Robins to be a safe and inclusive environment.
30+
That’s why we ask our attendees to follow our{' '}
31+
<Link to='/code-of-conduct' title='Code of Conduct'>
3232
Code of Conduct
3333
</Link>
3434
!
3535
</p>
3636
<p>
37-
In the unfortunate case that you see someone violating the code of conduct, here are
38-
some ways you can report it to us:
37+
In the unfortunate case that you see someone violating the code of
38+
conduct, here are some ways you can report it to us:
3939
</p>
4040
<ul>
4141
<li> Send a DM to {contactInfo.twitterHandle}</li>
4242
<li>
4343
Let a{' '}
44-
<Link to="/organizers" title="Code of Conduct">
44+
<Link to='/organizers' title='Code of Conduct'>
4545
Core Team
4646
</Link>{' '}
4747
organizer know, either in person or via Twitter.
4848
</li>
4949
<li>
5050
{' '}
51-
Send an email to <a href={`mailto:${contactInfo.email}`}>{contactInfo.email}</a>
51+
Send an email to{' '}
52+
<a href={`mailto:${contactInfo.email}`}>{contactInfo.email}</a>
5253
</li>
5354
</ul>
5455
</section>
5556
</Panel>
5657
</main>
5758
</Layout>
58-
)
59-
}
59+
);
60+
};
6061

61-
export default Report
62+
export default Report;

0 commit comments

Comments
 (0)