"use client"; import React, { useState } from "react"; import { Play, PlayCircle, Star, ShieldCheck, X } from "lucide-react"; import { motion, AnimatePresence } from "motion/react"; import { useRouter } from "next/navigation"; const VIDEOS = [ { id: "v1", title: "نحوه آماده‌سازی کانی‌هیدروکس", doctor: "دکتر کلاوس هنینگ", duration: "۱:۴۵", thumbnail: "https://images.unsplash.com/photo-1576091160550-217359f42f8c?auto=format&fit=crop&q=80&w=400", videoUrl: "https://www.w3schools.com/html/mov_bbb.mp4", // Placeholder real-looking video description: "آموزش گام به گام آماده‌سازی پودر Canhydrox GAG برای جذب حداکثری در دستگاه گوارش." }, { id: "v2", title: "اهمیت صدف لب‌سبز", doctor: "دکتر النا اشمیت", duration: "۲:۲۰", thumbnail: "https://images.unsplash.com/photo-1599443015574-be5fe8a05783?auto=format&fit=crop&q=80&w=400", videoUrl: "https://www.w3schools.com/html/movie.mp4", description: "چرا صدف لب‌سبز نیوزیلندی نایاب‌ترین و موثرترین ماده برای بازسازی مفصل است؟" }, { id: "v3", title: "تغذیه هوشمند توله‌سگ‌ها", doctor: "دکتر هلگا فیشر", duration: "۳:۱۰", thumbnail: "https://images.unsplash.com/photo-1583337130417-3346a1be7dee?auto=format&fit=crop&q=80&w=400", videoUrl: "https://www.w3schools.com/html/mov_bbb.mp4", description: "دوز مصرفی مکمل‌های کلسیم در نژادهای بزرگ برای جلوگیری از بدشکلی‌های استخوانی." } ]; export default function VetGallery({ testimonials = [] }: { testimonials?: any[] }) { const router = useRouter(); const displayItems = testimonials.length > 0 ? testimonials : VIDEOS; const [selectedVideo, setSelectedVideo] = useState(null); return (
Vet Insights

مشاوره ویدئویی دوست دامپزشک پت شما

متخصصین آلمانی کانینا مستقیماً با شما صحبت می‌کنند. نحوه مصرف، مزایای رقابتی و دانش تخصصی پشت هر محصول.

{displayItems.map((video: any, index: number) => ( setSelectedVideo(video)} className="w-full text-right block group cursor-pointer focus-visible:ring-4 focus-visible:ring-canina-blue/30 focus-visible:outline-none rounded-[2rem] p-2" >
{video.title
⏱️ {video.duration || (index === 0 ? '۱:۴۵' : index === 1 ? '۲:۲۰' : '۳:۱۰')}

{video.title || video.quote?.substring(0, 40) + '...'}

{video.doctor || video.vetName}
))}
{/* Video Modal */} {selectedVideo && (
setSelectedVideo(null)} className="absolute inset-0 bg-medical-gray-900/90 backdrop-blur-xl" />
)}
); }