"use client";
import { Skeleton } from "@heroui/react";
export default function ProductDetailSkeleton() {
return (
{/* ① Header + StatsCards — 同一卡片,跨3列 */}
{/* ProductHeader */}
{/* StatsCards — 移动端2列,桌面端5列 */}
{[0, 1, 2, 3, 4].map((i) => (
))}
{/* ② 交易板 + Protocol — 移动端排第2,桌面端右列 */}
{[0, 1, 2, 3].map((i) => (
))}
{/* ③ Asset Overview + APY + Description — 移动端排第3,桌面端左列 */}
{/* AssetOverviewCard */}
{[0, 1, 2, 3].map((i) => (
))}
{/* APYHistoryCard */}
{/* AssetDescriptionCard */}
{[0, 1, 2, 3].map((i) => (
))}
{/* ④ Season1Rewards — 全宽 */}
{/* ⑤ PerformanceAnalysis — 全宽 */}
{Array.from({ length: 35 }).map((_, i) => (
))}
{/* ⑥ AssetCustodyVerification — 全宽 */}
{[0, 1, 2, 3, 4].map((i) => (
))}
{[0, 1, 2, 3, 4].map((i) => (
))}
{[0, 1, 2].map((i) => (
))}
);
}