feat: add other charts

This commit is contained in:
Ephraim Atta-Duncan
2023-08-15 08:45:24 +00:00
parent e2471a8eb4
commit 96f7ca4e36
5 changed files with 139 additions and 1 deletions

View File

@ -5,6 +5,9 @@ import { SalaryBands } from '~/app/(marketing)/open/salary-bands';
import { CapTable } from './cap-table';
import { FundingRaised } from './funding-raised';
import { GithubForks } from './gh-forks';
import { GithubMergedPrs } from './gh-merged-prs';
import { GithubOpenIssues } from './gh-open-issues';
import { GithubStars } from './gh-stars';
import { TeamMembers } from './team-members';
@ -108,6 +111,9 @@ export default async function OpenPage() {
<CapTable className="col-span-12 lg:col-span-6" />
<GithubStars className="col-span-12 lg:col-span-6" data={STARGAZERS_DATA} />
<GithubForks className="col-span-12 lg:col-span-4" data={STARGAZERS_DATA} />
<GithubMergedPrs className="col-span-12 lg:col-span-4" data={STARGAZERS_DATA} />
<GithubOpenIssues className="col-span-12 lg:col-span-4 " data={STARGAZERS_DATA} />
<div className="col-span-12 mt-12 flex flex-col items-center justify-center">
<h2 className="text-2xl font-bold">Where's the rest?</h2>