From b1421c0ed9f6020ccf40a5da15fcecebc112700f Mon Sep 17 00:00:00 2001 From: Viet Nguyen <3805254+vnugent@users.noreply.github.com> Date: Mon, 30 Oct 2023 14:15:15 -0700 Subject: [PATCH] feat: add github contributors (#1004) --- src/app/components/FinancialContributors.tsx | 21 ++++--- src/app/components/LandingCTA.tsx | 13 ++-- src/app/components/LandingHero.tsx | 4 +- src/app/components/RecentEdits.tsx | 4 +- src/app/components/RecentTags.tsx | 2 +- src/app/components/Volunteers.tsx | 63 ++++++++++++++++++++ src/app/components/ui/SectionContainer.tsx | 28 ++++++--- src/app/global.css | 4 ++ src/app/page.tsx | 6 +- 9 files changed, 116 insertions(+), 29 deletions(-) create mode 100644 src/app/components/Volunteers.tsx diff --git a/src/app/components/FinancialContributors.tsx b/src/app/components/FinancialContributors.tsx index 5cceed8bf..736099140 100644 --- a/src/app/components/FinancialContributors.tsx +++ b/src/app/components/FinancialContributors.tsx @@ -1,7 +1,7 @@ import { getSummaryReport } from '@/js/graphql/opencollective' import { FinancialBackerAccountType } from '@/js/types' import { DonateButton } from './LandingCTA' - +import { SectionContainer, Width } from './ui/SectionContainer' /** * List financial contributors */ @@ -9,18 +9,21 @@ export const FinancialContributors: React.FC = async () => { const { donors, totalRaised } = await getSummaryReport() return ( -