feat: add Games navigation to main app header

- Add Games link to navigation in both homepage and create page headers
- Consistent styling with existing Guide navigation link
- Enables easy discovery and access to interactive soroban games

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2025-09-14 11:46:59 -05:00
parent 331a78937e
commit b87ed01520
2 changed files with 28 additions and 0 deletions

View File

@@ -214,6 +214,20 @@ export default function CreatePage() {
>
Guide
</Link>
<Link
href="/games"
className={css({
px: '4',
py: '2',
color: 'brand.600',
fontWeight: 'medium',
rounded: 'lg',
transition: 'all',
_hover: { bg: 'brand.50' }
})}
>
Games
</Link>
</div>
</div>
</div>

View File

@@ -33,6 +33,20 @@ export default function HomePage() {
>
Guide
</Link>
<Link
href="/games"
className={css({
px: '4',
py: '2',
color: 'brand.600',
rounded: 'lg',
fontWeight: 'medium',
transition: 'all',
_hover: { bg: 'brand.50' }
})}
>
Games
</Link>
<Link
href="/create"
className={css({