refactor(games): move page title to nav bar

Move 'Soroban Arcade' title from page content to navigation bar
for consistency with other app pages (create, guide).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2025-11-03 07:30:27 -06:00
parent 3830e049ec
commit 712ee58e59

View File

@@ -91,18 +91,6 @@ function GamesPageContent() {
mb: '12',
})}
>
<h1
className={css({
fontSize: { base: '4xl', md: '5xl' },
fontWeight: 'bold',
color: 'gray.900',
mb: '4',
letterSpacing: 'tight',
})}
>
{t('hero.title')}
</h1>
<p
className={css({
fontSize: { base: 'lg', md: 'xl' },
@@ -1116,7 +1104,7 @@ const globalAnimations = `
export default function GamesPage() {
return (
<PageWithNav>
<PageWithNav navTitle="Soroban Arcade" navEmoji="🕹️">
<GamesPageContent />
</PageWithNav>
)