
Some checks failed
GBCI / build (push) Failing after 3m42s
- Implemented ChatProvider to manage chat context and user state. - Added API fetching utility for chat instance and activity handling. - Integrated chat service with methods for sending activities. - Updated Tailwind CSS configuration to include additional content paths and custom utilities. - Added client-side rendering directive to mode-toggle component. - Created README.md for settings documentation.
19 lines
405 B
TypeScript
19 lines
405 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">
|
|
|
|
</p>
|
|
</div>
|
|
<div className="border-t border-gray-200 my-4" />
|
|
<ProfileForm />
|
|
</div>
|
|
);
|
|
}
|