import { useTranslation } from 'react-i18next' import AppLayout from '~/layouts/AppLayout' export default function About() { const { t } = useTranslation() return (
{t('about.hello')}
) }