first day of vibe coding

This commit is contained in:
k
2026-04-20 22:11:18 +08:00
commit 1747fc489f
38 changed files with 15267 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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>
)
}