18 lines
375 B
TypeScript
18 lines
375 B
TypeScript
'use client'
|
|
|
|
import { useLanguage } from '@/lib/i18n'
|
|
|
|
export function SettingsHeader() {
|
|
const { t } = useLanguage()
|
|
return (
|
|
<div>
|
|
<h1 className="text-2xl font-bold tracking-tight text-foreground">
|
|
{t('admin.settings')}
|
|
</h1>
|
|
<p className="text-muted-foreground mt-1">
|
|
{t('admin.settingsDescription')}
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|