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:
@@ -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>
|
||||
|
||||
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user