This commit is contained in:
root
2025-12-22 06:43:19 +01:00
parent a940d51475
commit 6f4ca75faf
25 changed files with 1350 additions and 221 deletions

View File

@@ -1,7 +1,13 @@
'use client'
import { useI18n } from '@/lib/i18n'
export default function Footer() {
const { t } = useI18n()
return (
<footer>
© 2025 420Deals.ch · CBD &lt; 1% THC · Sale from 18 years · Switzerland
{t('footer.text')}
</footer>
)
}