Where's the rest?
diff --git a/apps/marketing/src/app/(marketing)/open/typefully.tsx b/apps/marketing/src/app/(marketing)/open/typefully.tsx
new file mode 100644
index 000000000..a233904db
--- /dev/null
+++ b/apps/marketing/src/app/(marketing)/open/typefully.tsx
@@ -0,0 +1,39 @@
+'use client';
+
+import type { HTMLAttributes } from 'react';
+
+import Link from 'next/link';
+
+import { FaXTwitter } from 'react-icons/fa6';
+
+import { cn } from '@documenso/ui/lib/utils';
+import { Button } from '@documenso/ui/primitives/button';
+
+export type TypefullyProps = HTMLAttributes
;
+
+export const Typefully = ({ className, ...props }: TypefullyProps) => {
+ return (
+
+
Twitter Stats
+
+
+
+
+
+
Documenso on X
+
+
+
+
+
+
+ );
+};