Files
cbd420/app/components/Footer.tsx
2025-12-22 06:43:19 +01:00

15 lines
186 B
TypeScript

'use client'
import { useI18n } from '@/lib/i18n'
export default function Footer() {
const { t } = useI18n()
return (
<footer>
{t('footer.text')}
</footer>
)
}