in src/pages/index.tsx [26:45]
export default function Home() {
const { status } = useSession();
return (
<>
<Head>
<title>Home | Developer Journey App</title>
</Head>
<main>
{status === "authenticated" ? (
<div className="grid grid-cols-1 sm:grid-cols-5 gap-3">
<PromptPanel />
<TileBoard />
<GameControls />
<Inventory />
</div>
) : (<SignInRecommendation />)}
</main>
</>
)
}