mirror of
https://github.com/lingke-net/koring-space.git
synced 2026-09-12 05:45:17 +08:00
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>
|
||
|
|
);
|
||
|
|
}
|