diff --git a/apps/marketing/src/app/(marketing)/open/typefully.tsx b/apps/marketing/src/app/(marketing)/open/typefully.tsx index 809b0f6c3..98f4186d0 100644 --- a/apps/marketing/src/app/(marketing)/open/typefully.tsx +++ b/apps/marketing/src/app/(marketing)/open/typefully.tsx @@ -1,7 +1,6 @@ 'use client'; import type { HTMLAttributes } from 'react'; -import { useEffect, useState } from 'react'; import Image from 'next/image'; import Link from 'next/link'; @@ -13,34 +12,27 @@ import { Button } from '@documenso/ui/primitives/button'; export type TypefullyProps = HTMLAttributes; export const Typefully = ({ className, ...props }: TypefullyProps) => { - const [isSSR, setIsSSR] = useState(true); - - useEffect(() => { - setIsSSR(false); - }, []); return (

Twitter Stats

- {!isSSR && ( -
- Twitter Logo +
+ Twitter Logo + +

Documenso on X

+ + - -
- )} + + +
);