import Link from 'next/link' import { getI18n } from '@/i18n/i18n.server' export const FooterText = (): JSX.Element => { const i18n = getI18n() return (

Théo LUDWIG {' '} | {i18n.translate('common.all-rights-reserved')}

) }