666b99524a
closes https://github.com/twentyhq/core-team-issues/issues/1480 --------- Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
21 lines
518 B
TypeScript
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>
|
|
</>
|
|
);
|
|
};
|