mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
12 lines
345 B
TypeScript
12 lines
345 B
TypeScript
import ServerListClient from "./ClientComponents/main/ServerListClient"
|
|
import ServerOverviewClient from "./ClientComponents/main/ServerOverviewClient"
|
|
|
|
export default async function Home() {
|
|
return (
|
|
<div className="mx-auto grid w-full max-w-5xl gap-4 md:gap-6">
|
|
<ServerOverviewClient />
|
|
<ServerListClient />
|
|
</div>
|
|
)
|
|
}
|