Skip to content

WEB: Improvements to the contribute page #29107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
55 changes: 49 additions & 6 deletions web/pandas/contribute.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,55 @@
# Contribute to pandas

_pandas_ is and always will be **free**. To make the development sustainable, we need _pandas_ users, corporate
or individual, to support the development by providing their time and money.
_pandas_ is and will always be **free**. To make the development sustainable, we need _pandas_ users, corporate
and individual, to support the development by providing their time and money.

You can find more information about current developers in the [team page](about/team.html),
and about current sponsors in the [sponsors page](about/sponsors.html).
Financial contributions will mainly be used to advance in the [pandas roadmap](about/roadmap.html).

- If your **company or organization** is interested in helping make pandas better, please contact us at [info@numfocus.org](mailto:info@numfocus.org)
- If you want to contribute to _pandas_ with your **time**, please visit the [contributing page]({{ base_url }}/docs/development/index.html)
- If you want to support _pandas_ with a **donation**, please use the [donations page](donate.html).
<section>
<div class="container mt-5">
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x pink"></i>
<i class="fas fa-building fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading mt-3 font-weight-bold blue">Corporate support</h4>
<p class="text-muted">
pandas depends on companies and institutions using the software to support its development. Hiring
people to work on pandas, or letting existing employees to contribute to the
software. Or sponsoring pandas with funds, so the project can hire people to
progress on the <a href="about/roadmap.html">pandas roadmap</a>.
</p>
<p>More information in the <a href="about/sponsors.html">sponsors page</a></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x pink"></i>
<i class="fas fa-users fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading mt-3 font-weight-bold blue">Individual contributors</h4>
<p class="text-muted">
pandas is mostly developed by volunteers. All kind of contributions are welcome,
such as contributions to the code, to the website (including graphical designers),
to the documentation (including translators) and others. There are tasks for all
levels, including beginners.
</p>
<p>More information in the <a href="{{ base_url }}/docs/development/index.html">contributing page</a></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x pink"></i>
<i class="fas fa-dollar-sign fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading mt-3 font-weight-bold blue">Donations</h4>
<p class="text-muted">
Individual donations are appreciated, and are used for things like the project
infrastructure, travel expenses for our volunteer contributors to attend
the in-person sprints, or to give small grants to develop features.
</p>
<p>Make your donation in the <a href="donate.html">donate page</a></p>
</div>
</div>
</div>
</section>
6 changes: 6 additions & 0 deletions web/pandas/static/css/pandas.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ a {
code {
white-space: pre;
}
.blue {
color: #150458;
}
.pink {
color: #e70488;
}
.fab {
font-size: 1.2rem;
color: #666;
Expand Down