import Image from "next/image" import { Button } from "@/components/ui/button" import { Card, CardContent } from "@/components/ui/card" import { Badge } from "@/components/ui/badge" import { Heart, Shield, Star, ThumbsUp, Timer } from 'lucide-react' export default function MedicalProductPage() { return (
{/* 头部区域 */}
{/* 主要内容区域 */}
{/* 产品展示区 */}
新品上市

智能血压监测仪 Pro

采用先进的智能监测技术,24小时实时监控血压变化, 准确度达到医用级别,让您随时掌握健康状况。

智能血压监测仪
{/* 产品特点 */}

产品特点

{/* 认证与荣誉 */}

认证与荣誉

{/* 咨询区域 */}

专业咨询

如果您对我们的产品感兴趣或有任何疑问,欢迎联系我们的专业顾问

{/* 页脚 */}
) } // 特点卡片组件 function FeatureCard({ icon: Icon, title, description }: { icon: any title: string description: string }) { return (

{title}

{description}

) } // 认证卡片组件 function CertificationCard({ title, description, rating }: { title: string description: string rating: string }) { return (
{rating}

{title}

{description}

) }