nezha_dash/app/[locale]/(main)/page.tsx
2024-09-26 14:23:53 +08:00

14 lines
330 B
TypeScript

import ServerList from "../../../components/ServerList";
import ServerOverview from "../../../components/ServerOverview";
export const runtime = 'edge';
export default function Home() {
return (
<div className="mx-auto grid w-full max-w-5xl gap-4 md:gap-6">
<ServerOverview />
<ServerList />
</div>
);
}