in progress credits page

This commit is contained in:
Foster Irwin 2022-11-07 20:04:49 -07:00
parent ccb07cbc59
commit 87f491466f

View file

@ -35,8 +35,17 @@ const Credits = (): JSX.Element => {
description="Meshtastic is made possible by the following people & organizations."
>
<main className="relative mt-20">
<div className="container mx-auto p-8 leading-normal space-y-4">
<h1>Sponsor Meshtastic</h1>
<div className="container mx-auto p-6 leading-normal space-y-4">
<h1>Credits</h1>
<p>
Meshtastic is community driven. Thousands of hours have been donated by volunteers who want to develop this amazing project. Whether you've submitted a pull request or triaged a bug in our Discord/Forum. You've made Meshtastic possible. Thank you for your contributions.
</p>
<p>
We would also like to recognize those who have donated financially to the project. As Meshtastic has grown, we've aquired some ongoing costs to keep the project running. Thank you for your generous donations.
</p>
</div>
<div className="container mx-auto p-6 leading-normal space-y-4">
<h2>Fiscal Sponsors</h2>
<p>
We have partnered with both the <a className="underline" href="https://opencollective.com" target="_blank">Open Collective</a> and the <a className="underline" href="https://www.oscollective.org" target="_blank">Open Source Collective</a> to help us with a fiscal management framework and banking needs. They help support over three thousand open source projects including the PHP Foundation, F-Droid, Sonarr, LinuxServer and DarkReader. We are in good hands and good company.
</p>
@ -60,11 +69,16 @@ const Credits = (): JSX.Element => {
Sponsor Meshtastic
</Link>
</div>
<h3>
Open Collective Donations
{/*Open Collective Donations*/}
</h3>
<h3>
GitHub Sponsor Donations
{/*GitHub Sponsor Donations*/}
</h3>
</div>
<div className="container mx-auto p-8 leading-normal space-y-4">
<h2>Fiscal Sponsors</h2>
</div>
<div className="container mx-auto p-8 leading-normal space-y-4">
<div className="container mx-auto p-6 leading-normal space-y-4">
<h2>Partnerships</h2>
<div className="mt-12 grid grid-cols-2 gap-0.5 md:grid-cols-3 lg:mt-0 lg:grid-cols-2">
{partnerLogos.map((logo) => (
@ -81,15 +95,14 @@ const Credits = (): JSX.Element => {
))}
</div>
</div>
<div className="container mx-auto p-8 leading-normal space-y-4">
<div className="container mx-auto p-6 leading-normal space-y-4">
<h2>Contributors</h2>
<p>
Literally thousands of hours have gone into creating, maintaining, and improving Meshtastic. Without our contributors none of this would be possible. Thank you for donating the time for each and every commit, issue, and pull request.
</p>
{/*GitHub Organization Contributors*/}
</div>
<div className="container mx-auto p-8 leading-normal space-y-4">
<h2>Project Admins</h2>
</div>
// <div className="container mx-auto p-8 leading-normal space-y-4">
// <h2>Special Mentions</h2>
// </div>
{/*Admin Bios*/}
</main>
</Layout>
)