diff --git a/src/pages/credits/_components/Avatar.tsx b/src/pages/credits/_components/Avatar.tsx new file mode 100644 index 00000000..ab084965 --- /dev/null +++ b/src/pages/credits/_components/Avatar.tsx @@ -0,0 +1,55 @@ +import React from 'react'; + +export interface avatarProps { + imgUrl: string; + name?: string; + userName?: string; + description?: string; +} + +export interface avatarLayoutProps { + list: list[]; +} + +export const Avatar = ({ + imgUrl, + name, + userName, + description, +}: avatarProps): JSX.Element => { + return ( +
+
+
+ +
+
+ {name} +
+ + {description} + +
+
+
+
+ ) +} + +export const AvatarLayout = ({ + list +} :avatarLayoutProps): JSX.Element => { + return ( +
+
+ {list.map((e) => { + return + }) + } +
+
+ ) +} diff --git a/src/pages/credits/index.tsx b/src/pages/credits/index.tsx new file mode 100644 index 00000000..2a5ce374 --- /dev/null +++ b/src/pages/credits/index.tsx @@ -0,0 +1,122 @@ +import React from 'react'; +import Layout from '@theme/Layout'; +import Link from '@docusaurus/Link'; + +import { + Avatar, + AvatarLayout + } from './_components/Avatar'; + +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( + +
+
+

Credits

+

+ 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. +

+

+ 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. +

+
+
+

Fiscal Sponsors

+

+ 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 + +
+

+ Open Collective Donations + {/*Open Collective Donations*/} + +

+

+ GitHub Sponsor Donations + {/*GitHub Sponsor Donations*/} + +

+
+
+

Partnerships

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

Contributors

+

+ 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. +

+ {/*GitHub Organization Contributors*/} + +
+ {/*Admin Bios*/} +
+ +
+
+
+ ) +} + +export default Credits;