import React from 'react' import { useTranslation } from 'react-i18next' const BeforeLogin: React.FC<{ i18n }> = () => { const { t } = useTranslation() return (

{t('general:welcome')}

This demo is a set up to configure Payload for the develop and testing of features. To see a product demo of a Payload project please visit:{' '} demo.payloadcms.com .

) } export default BeforeLogin