"use client"; import { useEffect } from "react"; import Link from "next/link"; import { usePlaceDetails } from "@/hooks/roblox/usePlaceDetails"; import { RobloxVerifiedSmall } from "@/components/roblox/RobloxTooltips"; import { Button } from "@/components/ui/button"; import { useGameLaunch } from "@/components/providers/GameLaunchProvider"; interface GamePageContentProps { placeId: string; } export default function GamePageContent({ placeId }: GamePageContentProps) { const game = usePlaceDetails(placeId); const { launchGame } = useGameLaunch(); // Set dynamic document title useEffect(() => { if (!!game) { document.title = `${game.name} | Roblox`; } }, [game]); if (!game) return