import * as React from 'react'; import { useTranslation } from 'react-i18next'; export interface IGeneratorsProps {} export const Generators: React.FunctionComponent = (props: React.PropsWithChildren) => { const { t: strings } = useTranslation(); return (

{strings(`generators_title`)}

11ty
Docusaurus
Gatsby
Hugo
Jekyll
Next.js

{strings(`generators_more`)}

); };