index.tsx 463 B

1234567891011121314151617
  1. import { Separator } from '@/components/ui/separator'
  2. import ProfileForm from './profile-form'
  3. export default function SettingsProfile() {
  4. return (
  5. <div className='space-y-6'>
  6. <div>
  7. <h3 className='text-lg font-medium'>Profile</h3>
  8. <p className='text-sm text-muted-foreground'>
  9. This is how others will see you on the site.
  10. </p>
  11. </div>
  12. <Separator className='my-4' />
  13. <ProfileForm />
  14. </div>
  15. )
  16. }