14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
import { getTranslations } from 'next-intl/server'
|
|
import SettingsClient from './SettingsClient'
|
|
|
|
export default async function SettingsPage() {
|
|
const t = await getTranslations('settings')
|
|
|
|
return (
|
|
<div className="max-w-[1400px] mx-auto px-6 py-6">
|
|
<h1 className="text-[22px] font-medium text-white mb-5">{t('title')}</h1>
|
|
<SettingsClient />
|
|
</div>
|
|
)
|
|
}
|