Quellcode durchsuchen

add warning about meeting restarts

Matthew Trejo vor 2 Tagen
Ursprung
Commit
1166284f74

+ 9 - 0
src/app/appointments/[id]/meet/page.tsx

@@ -331,6 +331,15 @@ export default function MeetPage() {
   return (
     <>
       <div className="container mx-auto px-4 py-8 max-w-7xl">
+        <div className="mb-6 bg-yellow-50 border border-yellow-200 rounded-lg p-4">
+          <div className="flex items-center gap-3">
+            <AlertTriangle className="h-5 w-5 text-yellow-600" />
+            <p className="text-sm text-yellow-800">
+              <strong>Nota:</strong> Debido a que el sistema está en desarrollo, pueden presentarse interrupciones durante las consultas telemáticas. En caso de haberlas, solo debe entrar nuevamente a la reunión.
+            </p>
+          </div>
+        </div>
+
         <div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
           {/* Videollamada - 2 columnas en pantallas grandes */}
           <div className="lg:col-span-2">

+ 1 - 1
src/components/appointments/ConsultationNotes.tsx

@@ -194,7 +194,7 @@ export function ConsultationNotes({ appointmentId, isDoctor }: ConsultationNotes
             ) : (
               <Check className="h-4 w-4 mr-2" />
             )}
-            <span className="truncate">Guardar y Compartir</span>
+            <span className="truncate">Compartir Notas</span>
           </Button>
         </div>