import Link from "next/link"; import { Button } from "@/components/ui/button"; import { Sparkles, Users, Plus } from "lucide-react"; import LobbyDialog from "../_components/lobby/lobby-dialog"; import { auth } from "@/server/auth"; import { Icons } from "@/components/icons"; import { appConfig } from "@/app.config"; export default async function QuizGameStartPage() { const session = await auth(); return ( <>

{appConfig.name}

{appConfig.description}

{/* Game card */}
{/* Create Lobby Button */}
{session ? ( ) : ( )} {/* Join Lobby Button */} {/* Quick Play Option */}
); }