import * as React from 'react'; import { useTranslation } from 'react-i18next'; import { features } from '../../constants/features'; import { CheckIcon } from '@heroicons/react/outline'; import Link from 'next/link'; import { Extension } from '../../constants/extension'; export interface IFeaturesProps {} export const Features: React.FunctionComponent = (props: React.PropsWithChildren) => { const { t: strings } = useTranslation(); return (

{strings(`features_title`)}

{strings(`features_description`)}

{features.map((feature) => (
{strings(feature.description)}
))}

{strings(`features_cta_title`)}

{strings(`features_cta_button`)}

); };