mirror of
https://github.com/lingke-net/koring-space.git
synced 2026-09-12 05:45:17 +08:00
- 新增专用的感谢下载页面,支持自动触发下载、SHA512校验值复制与手动重试下载 - 新增下载链接白名单校验机制,避免不安全的任意地址跳转与下载 - 重构官方下载页与测试版申请页面的下载逻辑,统一通过感谢页面完成全流程下载
23 lines
583 B
TypeScript
23 lines
583 B
TypeScript
import { Suspense } from "react";
|
|
import { ThanksView } from "./thanks-view";
|
|
import { Loader2 } from "lucide-react";
|
|
|
|
export const metadata = {
|
|
title: "感谢下载 · Koring Launcher",
|
|
};
|
|
|
|
export default function ThanksPage() {
|
|
return (
|
|
<Suspense
|
|
fallback={
|
|
<div className="flex flex-col items-center justify-center min-h-[60vh] gap-4">
|
|
<Loader2 className="size-8 animate-spin text-muted-foreground" />
|
|
<p className="text-muted-foreground">正在准备下载...</p>
|
|
</div>
|
|
}
|
|
>
|
|
<ThanksView />
|
|
</Suspense>
|
|
);
|
|
}
|