"use client"; import { ChevronDown, Plus } from "lucide-react"; import { Avatar, AvatarFallback } from "@/components/ui/avatar"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { CopyField, FieldLabel, SettingsCard, SettingsSection, ToggleRow, } from "@/components/settings/settings-parts"; const patientNotifications = [ { title: "New lab result", description: "Sent when a new lab result is available on a patient's chart", }, { title: "Record updated", description: "Sent when a patient's record is updated by a member of the care team", }, { title: "Approval requested", description: "Sent when a signed change is awaiting the patient's approval", }, { title: "Change approved", description: "Sent when a patient approves a pending change to their record", }, { title: "New message", description: "Sent when a patient or another clinician sends a message", }, { title: "Visit scheduled", description: "Sent when an upcoming visit is added to a patient's record", }, ]; export function ProfilePanel() { return ( <>
Avatar K
Display name
Specialty
Clinic / practice
Contact email
Professional links

Registry or institutional profiles used to verify your identity. They are never shown to patients.

{patientNotifications.map((item) => ( ))}

Delete account

Permanently delete your temetro account and any locally stored signing keys. This action cannot be undone.

); }