2025-03-30 16:42:51 -03:00
|
|
|
import React from 'react';
|
|
|
|
import { ProfileForm } from './profile-form';
|
|
|
|
|
|
|
|
export default function SettingsProfilePage() {
|
|
|
|
return (
|
2025-03-30 19:39:59 -03:00
|
|
|
<div className="space-y-6">
|
|
|
|
<div>
|
|
|
|
<h2 className="text-lg font-medium">Profile</h2>
|
|
|
|
<p className="text-sm text-gray-500">
|
2025-03-30 16:42:51 -03:00
|
|
|
This is how others will see you on the site.
|
2025-03-30 19:39:59 -03:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="border-t border-gray-200 my-4" />
|
2025-03-30 16:42:51 -03:00
|
|
|
<ProfileForm />
|
2025-03-30 19:39:59 -03:00
|
|
|
</div>
|
2025-03-30 16:42:51 -03:00
|
|
|
);
|
|
|
|
}
|