Files
twenty/packages/twenty-emails/src/components/WhatIsTwenty.tsx
T
2025-09-17 19:01:43 +02:00

21 lines
518 B
TypeScript

import { type I18n } from '@lingui/core';
import { MainText } from 'src/components/MainText';
import { SubTitle } from 'src/components/SubTitle';
type WhatIsTwentyProps = {
i18n: I18n;
};
export const WhatIsTwenty = ({ i18n }: WhatIsTwentyProps) => {
return (
<>
<SubTitle value={i18n._('What is Twenty?')} />
<MainText>
{i18n._(
"It's a CRM, a software to help businesses manage their customer data and relationships efficiently.",
)}
</MainText>
</>
);
};