fix: correct styled-system import paths in games page

- Fix import paths from ../../styled-system to ../../../styled-system
- Resolves module not found compilation error

🤖 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:48:20 -05:00
parent b87ed01520
commit 82aa73eb0e

View File

@@ -1,8 +1,8 @@
'use client'
import Link from 'next/link'
import { css } from '../../styled-system/css'
import { grid } from '../../styled-system/patterns'
import { css } from '../../../styled-system/css'
import { grid } from '../../../styled-system/patterns'
export default function GamesPage() {
return (