Files
twenty_crm/packages/twenty-emails/src/components/WhatIsTwenty.tsx
Nabhag Motivaras 7eec64b6e0 have footer on emails (#11300)
# ISSUE 

- Closes #9622

---------

Co-authored-by: Félix Malfait <felix@twenty.com>
2025-04-03 14:26:19 +02:00

17 lines
441 B
TypeScript

import { i18n } from '@lingui/core';
import { MainText } from 'src/components/MainText';
import { SubTitle } from 'src/components/SubTitle';
export const WhatIsTwenty = () => {
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>
</>
);
};