17 lines
457 B
TypeScript
17 lines
457 B
TypeScript
import React from 'react';
|
|
import { ProfileForm } from './profile-form';
|
|
|
|
export default function SettingsProfilePage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h2 className="text-lg font-medium">Profile</h2>
|
|
<p className="text-sm text-gray-500">
|
|
This is how others will see you on the site.
|
|
</p>
|
|
</div>
|
|
<div className="border-t border-gray-200 my-4" />
|
|
<ProfileForm />
|
|
</div>
|
|
);
|
|
}
|