nezha_dash/app/(main)/page.tsx
2024-12-13 15:09:12 +08:00

12 lines
287 B
TypeScript

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