import React from "react"; import { api } from "@/trpc/server"; import CreateLobbyDialog from "@/app/_components/create-lobby-dialog"; import LobbyCard from "@/app/_components/lobby-card"; import { Button } from "@/components/ui/button"; async function Page() { const lobbies = await api.lobby.getAll(); return ( <>