"use client"; import type { ServerResponse } from "@/lib/types/mh-server"; import IconDisplay from "../icons/minecraft-icon-display"; import { ServerPageTags } from "./server-page-tags"; import { Separator } from "@/components/ui/separator"; import { ServerRows } from "./server-rows"; import { ServerPageButtons } from "./server-page-buttons"; export function ServerMainPage({ server }: { server: ServerResponse }) { return (

{server.name}

); }