18 lines
498 B
TypeScript
18 lines
498 B
TypeScript
"use client";
|
|
import React from 'react';
|
|
import { AccountForm } from './account-form';
|
|
|
|
export default function SettingsAccountPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h2 className="text-lg font-medium">Account</h2>
|
|
<p className="text-sm text-gray-500">
|
|
Update your account settings. Set your preferred language and timezone.
|
|
</p>
|
|
</div>
|
|
<div className="border-t border-gray-200 my-4" />
|
|
<AccountForm />
|
|
</div>
|
|
);
|
|
}
|