mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
15 lines
435 B
TypeScript
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>
|
|
)
|
|
}
|