From ccb07cbc59420ddb8ba5ae7f5d11815f6ae7fd66 Mon Sep 17 00:00:00 2001 From: Foster Irwin Date: Fri, 4 Nov 2022 21:36:13 -0600 Subject: [PATCH] initial credits page --- src/pages/credits/index.tsx | 98 +++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 src/pages/credits/index.tsx diff --git a/src/pages/credits/index.tsx b/src/pages/credits/index.tsx new file mode 100644 index 00000000..87100b99 --- /dev/null +++ b/src/pages/credits/index.tsx @@ -0,0 +1,98 @@ +import React from 'react'; +import Layout from '@theme/Layout'; +import Link from '@docusaurus/Link'; + +const Credits = (): JSX.Element => { + const partnerLogos = [ + { + name: 'Vercel', + url: '/2.0/vercel-logotype-dark.svg', + }, + { + name: 'Cloudflare', + url: '/2.0/CF_logo_horizontal_blktype.svg', + }, + { + name: 'RAK Wireless', + url: '/2.0/RAK-blue-main.svg', + }, + { + name: 'Open Collective', + url: '/2.0/opencollectivelogo.svg', + }, + { + name: 'LILYGO', + url: '/2.0/LILYGO.png', + }, + { + name: 'Discord', + url: '/2.0/discord.svg', + }, + ]; + return( + +
+
+

Sponsor Meshtastic

+

+ We have partnered with both the Open Collective and the Open Source Collective 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. +

+

+ As with everything we do here, Open Collective provides a fully transparent framework for our budget and expenses. You can see what we’re bringing in, who is spending money and where that money is going here. +

+

+ In addition to our partnership with Open Collective and Open Source Collective, we have also been approved into the GitHub Sponsors program where we can set fundraising goals with GitHub. +

+

+ All donations made through GitHub will be deposited to our account with the Open Source Collective and managed by the Open Collective. This means we have a single place to monitor and maintain transparency of our finances. +

+

+ If you are able, please contribute to this amazing project. +

+
+ + Sponsor Meshtastic + +
+
+
+

Fiscal Sponsors

+
+
+

Partnerships

+
+ {partnerLogos.map((logo) => ( +
+ {logo.name} +
+ ))} +
+
+
+

Contributors

+
+
+

Project Admins

+
+ //
+ //

Special Mentions

+ //
+
+
+ ) +} + +export default Credits;