diff --git a/src/pages/Exercise.tsx b/src/pages/Exercise.tsx
index 9b2b076..658e778 100644
--- a/src/pages/Exercise.tsx
+++ b/src/pages/Exercise.tsx
@@ -699,22 +699,32 @@ export const Exercise = () => {
title: "Описание упражнения",
description: exercise?.desc || "Выполните упражнение согласно инструкции.",
},
+
{
- title: "Продолжительность",
- description: `Время выполнения: ${exercise?.time || 15} минут`,
- },
- {
- title: "Подходы и повторения",
+ title: "Подходы",
description: `Выполните ${exercise?.count || 1} подход по ${exercise?.repeats || 12} повторений с отдыхом 60 секунд между подходами.`,
},
{
- title: "Позиция в программе",
- description: `Это упражнение №${exercise?.position || 1} в программе дня ${exercise?.day || 1}.`,
+ title: "Динамика",
+ description: "Добавить.",
+ },
+ {
+ title: "Статика",
+ description: "Добавить",
+ },
+ {
+ title: "Отдых",
+ description: "Добавить.",
+ },
+ {
+ title: "Продолжительность",
+ description: `Время выполнения: ${exercise?.time || 5} минут`,
},
{
title: "Техника безопасности",
description: "Следите за правильной техникой выполнения. При появлении боли немедленно прекратите упражнение.",
},
+
]
// ========== ЭКРАНЫ ЗАГРУЗКИ И ОШИБОК ==========
@@ -806,11 +816,10 @@ export const Exercise = () => {
!isCompleted && !isResting && setIsPlaying(!isPlaying)}
disabled={isCompleted || isResting}
- className={`w-20 h-20 rounded-full flex items-center justify-center shadow-2xl transition-all duration-300 transform hover:scale-110 ${
- isPlaying
+ className={`w-20 h-20 rounded-full flex items-center justify-center shadow-2xl transition-all duration-300 transform hover:scale-110 ${isPlaying
? "bg-white/20 backdrop-blur-xl border border-white/30"
: "bg-white/30 backdrop-blur-xl border border-white/50"
- } ${isCompleted || isResting ? "opacity-50 cursor-not-allowed" : ""}`}
+ } ${isCompleted || isResting ? "opacity-50 cursor-not-allowed" : ""}`}
>
{isPlaying ? : }
@@ -865,9 +874,8 @@ export const Exercise = () => {
return (
@@ -881,34 +889,58 @@ export const Exercise = () => {