import { SanityMdxWrapper } from './mdx-wrapper.mjs' import { useTranslation } from 'next-i18next' export const Author = ({ author = {} }) => { const { t } = useTranslation(['posts']) return (
{author.displayname}

) }