forked from reactjs/id.react.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acknowledgements.html.js
88 lines (81 loc) · 2.85 KB
/
acknowledgements.html.js
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
86
87
88
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* @emails react-core
*/
import Layout from 'components/Layout';
import Container from 'components/Container';
import Header from 'components/Header';
import TitleAndMetaTags from 'components/TitleAndMetaTags';
import React from 'react';
import {urlRoot} from 'site-constants';
import {sharedStyles} from 'theme';
import names from '../../content/acknowledgements.yml';
const Acknowlegements = ({data, location}) => (
<Layout location={location}>
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>Acknowledgements</Header>
<TitleAndMetaTags
ogUrl={`${urlRoot}/acknowledgements.html`}
title="React - Acknowledgements"
/>
<div css={sharedStyles.markdown}>
<p>We'd like to thank all of our contributors:</p>
<ul
css={{
display: 'flex',
flexWrap: 'wrap',
}}>
{names.map((name, index) => (
<li
css={{
flex: '1 0 200px',
}}
key={index}>
{name}
</li>
))}
</ul>
<p>In addition, we're grateful to</p>
<ul>
<li>
<a href="https://github.com/jeffbski">Jeff Barczewski</a> for
allowing us to use the{' '}
<a href="https://www.npmjs.com/package/react">react</a> package
name on npm.
</li>
<li>
<a href="https://christopheraue.net/">Christopher Aue</a> for
letting us use the <a href="http://reactjs.com/">reactjs.com</a>{' '}
domain name and the{' '}
<a href="https://twitter.com/reactjs">@reactjs</a> username on
Twitter.
</li>
<li>
<a href="https://github.com/ProjectMoon">ProjectMoon</a> for
letting us use the{' '}
<a href="https://www.npmjs.com/package/flux">flux</a> package
name on npm.
</li>
<li>
Shane Anderson for allowing us to use the{' '}
<a href="https://github.com/react">react</a> org on GitHub.
</li>
<li>
<a href="https://github.com/voronianski">Dmitri Voronianski</a>{' '}
for letting us use the{' '}
<a href="https://labs.voronianski.com/oceanic-next-color-scheme/">
Oceanic Next
</a>{' '}
color scheme on this website.
</li>
</ul>
</div>
</div>
</div>
</Container>
</Layout>
);
export default Acknowlegements;