-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathwho.js
More file actions
38 lines (37 loc) · 1.49 KB
/
who.js
File metadata and controls
38 lines (37 loc) · 1.49 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
import React from 'react';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import Layout from '@theme/Layout';
import Committers from '@site/src/components/Committers';
export default function Who() {
return (
<Layout title="Apache CloudStack Project Members">
<section>
<div className="container">
<div className="row">
<h1 className="section-title mt-lg-5">Apache CloudStack Project Members</h1>
<div>
<p>
PMC Information: https://projects.apache.org/committee.html?cloudstack
</p>
<p>
Board Minutes: https://whimsy.apache.org/board/minutes/CloudStack.html
</p>
<p>
<b>PMC Chair</b>: Daniel Augusto Veronezi Salvador (gutoveronezi)
</p>
<p>
The following data is subject to change. The up-to-date information can be found on <a href="http://people.apache.org/committers-by-project.html#cloudstack-pmc">the Apache Peoples site</a>:
</p>
<p>
<b>PMC members in bold</b> (also in the Committers group):
</p>
<section>
<Committers />
</section>
</div>
</div>
</div>
</section>
</Layout>
);
}