feat: establish NekoNest Cloud control and relay

This commit is contained in:
2026-08-12 23:25:43 +08:00
commit f27606b709
222 changed files with 71456 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
"use client";
import { RouteErrorState } from "../components/RouteStates";
export default function StatusError({ reset }: { reset: () => void }) {
return (
<RouteErrorState
area="服务状态"
title="状态页暂时不可用"
description="这次没有读取到可信的服务公告,因此不会显示推测的“服务正常”。"
reset={reset}
/>
);
}