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

26 lines
510 B
TypeScript

'use client'
import { useI18n } from '@/lib/i18n'
export default function InfoBox() {
const { t } = useI18n()
return (
<div className="info-box">
<div>
<h3>{t('infoBox.whyCheap')}</h3>
<p>{t('infoBox.whyCheapText')}</p>
</div>
<div>
<h3>{t('infoBox.taxesLegal')}</h3>
<p>{t('infoBox.taxesLegalText')}</p>
</div>
<div>
<h3>{t('infoBox.dropModel')}</h3>
<p>{t('infoBox.dropModelText')}</p>
</div>
</div>
)
}