mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
import ServerList from "@/components/ServerList";
|
|
import ServerOverview from "@/components/ServerOverview";
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
<div className="mx-auto grid w-full max-w-5xl gap-4 md:gap-6">
|
|
<ServerOverview />
|
|
<ServerList />
|
|
<div className={"mt-20 sm:mt-12"}></div>
|
|
</div>
|
|
);
|
|
}
|