2025-05-31 14:00:59 -03:00
|
|
|
|
|
|
|
|
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-05-31 14:00:59 -03:00
|
|
|
- **Ports Used**:
|
|
|
|
Main website: (https://www.pragmatismo.com.br).
|
|
|
|
Webmail (Stalwart): (https://mail.pragmatismo.com.br).
|
|
|
|
Database (PostgreSQL): .
|
|
|
|
SSO (Zitadel): (https://sso.pragmatismo.com.br).
|
|
|
|
Storage (MinIO): (https://drive.pragmatismo.com.br).
|
|
|
|
ALM (Forgejo): (https://alm.pragmatismo.com.br).
|
|
|
|
BotServer : (https://gb.pragmatismo.com.br).
|
|
|
|
Meeting: (https://call.pragmatismo.com.br).
|
|
|
|
IMAP: 993.
|
|
|
|
SMTP: 465.
|
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
|
|
|
);
|
|
|
|
}
|