1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/Footer.tsx

15 lines
435 B
TypeScript

import useTranslation from 'next-translate/useTranslation'
export const Footer: React.FC = () => {
const { t } = useTranslation()
return (
<footer className='bg-white flex justify-center py-6 text-lg border-t-2 border-gray-600 dark:border-gray-400 dark:bg-black'>
<p>
<span className='text-yellow dark:text-yellow-dark'>Divlo</span> |{' '}
{t('common:allRightsReserved')}
</p>
</footer>
)
}