+
Total Funding Raised
+
+
+
+
+
+
+ Number(value).toLocaleString('en-US', {
+ style: 'currency',
+ currency: 'USD',
+ maximumFractionDigits: 0,
+ })
+ }
+ />
+ [
+ Number(value).toLocaleString('en-US', {
+ style: 'currency',
+ currency: 'USD',
+ maximumFractionDigits: 0,
+ }),
+ 'Amount Raised',
+ ]}
+ cursor={{ fill: 'hsl(var(--primary) / 10%)' }}
+ />
+
+
+
+
+
+ );
+};
diff --git a/apps/marketing/src/app/(marketing)/open/gh-metrics.tsx b/apps/marketing/src/app/(marketing)/open/gh-metrics.tsx
new file mode 100644
index 000000000..5c0c79716
--- /dev/null
+++ b/apps/marketing/src/app/(marketing)/open/gh-metrics.tsx
@@ -0,0 +1,59 @@
+'use client';
+
+import { HTMLAttributes } from 'react';
+
+import { Bar, BarChart, ResponsiveContainer, Tooltip, XAxis, YAxis } from 'recharts';
+
+import { formatMonth } from '@documenso/lib/client-only/format-month';
+import { cn } from '@documenso/ui/lib/utils';
+
+import { StargazersType } from './page';
+
+export type MetricsDataKey = 'stars' | 'forks' | 'mergedPRs' | 'openIssues';
+export type GithubMetricProps = HTMLAttributes