initial commit: project completion with proper gitignore
This commit is contained in:
17
app/admin/(dashboard)/settings/page.tsx
Normal file
17
app/admin/(dashboard)/settings/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { getSettings } from '@/app/actions';
|
||||
import SettingsForm from './SettingsForm';
|
||||
|
||||
export default async function SettingsPage() {
|
||||
const settings = await getSettings();
|
||||
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<div>
|
||||
<h1 className="text-3xl font-black uppercase tracking-widest text-white mb-2">Site Ayarları</h1>
|
||||
<p className="text-white/40">Genel site bilgilerini ve iletişim adreslerini buradan güncelleyebilirsiniz.</p>
|
||||
</div>
|
||||
|
||||
<SettingsForm initialData={settings} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user