import React from 'react'; interface FacultyProfileViewProps { onLogout: () => void; name?: string; dept?: string; email?: string; phone?: string; photo?: string; } const FacultyProfileView: React.FC = ({ onLogout, name = 'Faculty Member', dept = 'Department', email = 'faculty@ritchennai.edu.in', phone = 'Not provided', photo }) => { return (
{/* Left Column: Profile Card */}
{photo ? ( {name} ) : (
)}

{name}

Event Coordinator

{email}
Verified Authority
{/* Right Column: Details */}

Faculty Information

{name}

{email}

{phone}

INSTITUTIONAL FACULTY AUTHORITY

{dept}

System Permissions

Create Events

Authorized to curate and list new institutional events.

Manage Participants

Can review registrations and track attendance.

View Analytics

Access to event performance and engagement data.

Issue Certificates

Authorized to issue digital certificates to attendees.

); }; export default FacultyProfileView;