import { notFound } from "next/navigation"; import { AppMetaInfo, ChangelogTimeline, DownloadButtons, QRCodeSection, VersionHistory } from "@/components/app-detail"; import { AppGrid, UnlockSection } from "@/components/sections"; import { ScrollReveal } from "@/components/scroll-reveal"; import { DetailScrollShowcase } from "@/components/detail-scroll-showcase"; import { getAppBySlug, getApps } from "@/services/apps.service"; import { ScreenshotGallery } from "@/components/screenshot-gallery"; import { AccessGate } from "@/components/access-gate"; export default async function AppDetailPage({ params }: { params: Promise<{ slug: string }> }) { const { slug } = await params; const app = await getAppBySlug(slug); if (!app) return notFound(); const appResources = await getApps(); const related = appResources.filter((i) => i.slug !== slug).slice(0, 3); return (
{app.subtitle}
下载提示
建议优先使用主线路,若下载慢可切换备用源或历史版本。
{app.description}