mirror of
https://github.com/DeveloLongScript/MHSF.git
synced 2026-05-08 00:44:59 -05:00
17 lines
387 B
TypeScript
17 lines
387 B
TypeScript
|
|
import { ServerList } from "@/components/feat/server-list/server-list";
|
||
|
|
import type { Metadata } from "next";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
applicationName: "MHSF",
|
||
|
|
title: "Server list · MHSF",
|
||
|
|
description: "View all servers on Minehut using the MHSF server list.",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function ServerListPage() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<ServerList />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|