Skip to content
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

feat: update Home.js #128

Merged
merged 3 commits into from
Dec 27, 2023
Merged
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
77 changes: 77 additions & 0 deletions src/page/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,83 @@ let r = query p select (c, d) from ReadyDate(c; d)

<hr className="mb-3"/>

<Row className="mb-3">
<Col md={6}>
<h2>Actively Developed and Maintained</h2>

<p className="text-justify">
Flix is actively developed by programming language researchers from <a
href="https://cs.au.dk/">Aarhus University</a> in Denmark in collaboration with researchers
from the <a href="https://uwaterloo.ca/">University
of Waterloo</a> in Canada, the <a href="https://uni-tuebingen.de/en/">University of
Tubingen</a> in Germany, and <a
href="https://di.ku.dk/english/">Copenhagen University</a> in Denmark.
</p>

<p>
Flix is also increasingly developed by a growing community of open source
contributors from all over the world.
</p>

<p>
We invite everyone to contribute.
</p>

</Col>
<Col md={6}>
<h2 className="text-center">Project Statistics</h2>
<table className="table">
<tbody>
<tr>
<td className="h4 text-right text-success font-weight-bold">3,800+</td>
<td className="h4">Merged Pull Requests (PRs)</td>
</tr>
<tr>
<td className="h4 text-right text-success font-weight-bold">2,500+</td>
<td className="h4">Resolved Issues (Tickets)</td>
</tr>
<tr>
<td className="h4 text-right text-success font-weight-bold">60+</td>
<td className="h4">Contributors</td>
</tr>
<tr>
<td className="h4 text-right text-success font-weight-bold">244,000+</td>
<td className="h4">Lines in Compiler Codebase</td>
</tr>
</tbody>
</table>
</Col>
</Row>

<hr className="mb-3"/>

<Row className="mb-3">
<Col md={6}>
<h2>Funding and Grants</h2>

<p className="text-justify">
Flix is generously funded by a range of instruments from:
</p>

<ul>
<li><a href="https://dff.dk/">Independent Research Fund Denmark</a></li>
<li><a href="https://dff.dk/">Digital Research Centre Denmark</a></li>
<li><a href="https://www.stibofonden.dk/">Stibo Foundation</a></li>
<li><a href="https://www.amazon.science/research-awards">Amazon Research Awards</a></li>
</ul>
</Col>
<Col md={6} className="align-self-center">
<h4 className="text-center">Total Funding: <span className="text-success font-weight-bold">€1.3 million</span>
</h4>

<p className="mt-3 small text-center">
This funding helps ensure the continuity and independence of the project.
</p>
</Col>
</Row>

<hr className="mb-3"/>

<Row className="mb-3">
<Col md="12">
<h2>Sponsors, Funding, and Collaborations</h2>
Expand Down
Loading