"use client"; import React, { useState } from "react"; import { motion, AnimatePresence } from "motion/react"; import { ChevronRight, ChevronLeft, PlayCircle, ShieldCheck, X, Search, Clock, User } from "lucide-react"; import SafeImage from "./SafeImage"; import { videoService, Video } from "../lib/services/videoService"; import { useRouter } from 'next/navigation'; import VideoModalPlayer from "./VideoModalPlayer"; const FALLBACK_VIDEOS: Video[] = [ { id: "v1", title: "نحوه آماده‌سازی کانی‌هیدروکس GAG", doctor: "دکتر کلاوس هنینگ", duration: "۰۱:۴۵", thumbnail: "https://images.unsplash.com/photo-1576091160550-217359f42f8c?auto=format&fit=crop&q=80&w=600", videoUrl: "https://www.w3schools.com/html/mov_bbb.mp4", description: "آموزش گام به گام آماده‌سازی پودر Canhydrox GAG برای جذب حداکثری در دستگاه گوارش." }, { id: "v2", title: "اهمیت صدف لب‌سبز برای بازسازی غضروف", doctor: "دکتر النا اشمیت", duration: "۰۲:۲۰", thumbnail: "https://images.unsplash.com/photo-1599443015574-be5fe8a05783?auto=format&fit=crop&q=80&w=600", videoUrl: "https://www.w3schools.com/html/movie.mp4", description: "چرا صدف لب‌سبز نیوزیلندی نایاب‌ترین و موثرترین ماده برای بازسازی مفصل است؟" }, { id: "v3", title: "تغذیه هوشمند توله‌سگ‌های نژاد بزرگ", doctor: "دکتر هلگا فیشر", duration: "۰۳:۱۰", thumbnail: "/assets/images/regenerated_image_1779109861747.png", videoUrl: "https://www.w3schools.com/html/mov_bbb.mp4", description: "دوز مصرفی مکمل‌های کلسیم در نژادهای بزرگ برای جلوگیری از بدشکلی‌های استخوانی." }, { id: "v4", title: "تاثیر امگا ۳ بر ریزش مو فصلی", doctor: "دکتر ماری کونیگ", duration: "۰۵:۱۵", thumbnail: "https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?auto=format&fit=crop&q=80&w=600", videoUrl: "https://www.w3schools.com/html/movie.mp4", description: "چربی‌های ضروری چگونه لایه محافظ پوست را بازسازی می‌کنند." }, { id: "v5", title: "سم‌زدایی گوارشی با اسید هومیک", doctor: "دکتر ریکاردو کوخ", duration: "۰۴:۰۰", thumbnail: "https://images.unsplash.com/photo-1581594693702-fbdc51b2763b?auto=format&fit=crop&q=80&w=600", videoUrl: "https://www.w3schools.com/html/mov_bbb.mp4", description: "مکانیزم عمل Moor-Tranke در جذب توکسین‌های روده‌ای." } ]; export default function VideosPage() { const router = useRouter(); const [videos, setVideos] = useState([]); const [isLoading, setIsLoading] = useState(true); const [selectedVideo, setSelectedVideo] = useState