This repository was archived by the owner on Jun 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathpress.js
More file actions
85 lines (75 loc) · 3.66 KB
/
press.js
File metadata and controls
85 lines (75 loc) · 3.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import React from 'react';
import { Link } from 'react-router-dom';
import Section from 'shared/components/section/section';
import PressVideos from './pressVideos/pressVideos';
import PressPhotos from './pressPhotos/pressPhotos';
import PressBranding from './pressBranding/pressBranding';
import PressLinks from './pressLinks/pressLinks';
import styles from './press.css';
const Press = () => (
<div>
<Section title="Press" theme="white">
<p>
This page is designed to make a journalist's job easy in writing, blogging, or
documenting Operation Code. Below you will find targeted information corresponding to common
representative visitors, videos, photos, and our branding guidelines. Eventually this page
will also contain a list of press releases. If you are looking for our mission statement or
our values, please <Link to="/about">go to the About page</Link>. On other pages of our
website you can <Link to="/faq">see answers to frequently asked questions</Link>,{' '}
<Link to="/history">view our history</Link>, and{' '}
<Link to="/team">learn more about our staff</Link>. Lastly, if you are seeking information
not located on our website, please do not hesitate to email us at{' '}
<a href="mailto:staff@operationcode.org">staff@operationcode.org</a>.
</p>
<br />
<div className={styles.flexContainer}>
<div className={styles.column}>
<h4>Code Schools</h4>
<p>
Firstly, if your code school's information is not listed on our directory, please
contact us at <a href="mailto:staff@operationcode.org">staff@operationcode.org</a>. If
your school has recently partnered with our organization and is seeking information to
write about it a blog post, we recommend joining our Slack team to receive personal
recommendations from our members, many of whom have attended various coding schools -
perhaps yours!
</p>
</div>
<div className={styles.column}>
<h4>Partnered Organizations</h4>
<p>
We have long-standing, productive partnerships with some amazing companies, and yours
could be one of them! Organizations the put our members and our open source work on a
pedastal, can look forward to receive social media blasts and the appreciate of
America's military veterans. If you are thinking about a partnership with Operation
Code, but are unsure of what to offer our members,{' '}
<a href="mailto:staff@operationcode.org">let's talk</a>. If you're seeking
information to display in announcing the partnership, please see below!
</p>
</div>
<div className={styles.column}>
<h4>Media Outlets</h4>
<p>
The staff at Operation Code thank you for taking your time to represent us in your work.
If your piece has a specific theme or target, and you'd like some custom
contributions, please join our organization to receive a Slack team invite. There
you'll likely find many Operation Code members willing and able to offer personal
anecdotes and first-hand interviews!
</p>
</div>
</div>
</Section>
<Section title="Videos">
<PressVideos />
</Section>
<Section title="Photos" theme="white">
<PressPhotos />
</Section>
<Section title="Press Articles">
<PressLinks />
</Section>
<Section title="Branding" theme="white">
<PressBranding />
</Section>
</div>
);
export default Press;