fix: remove GamePeriod date props to match component signature

- Remove purchaseStartDate, purchaseEndDate, gameStartDate, gameEndDate props
- GamePeriod component no longer accepts date parameters
- Fixes TypeScript build error

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
soufiane 2025-11-24 11:55:59 +01:00
parent 152563b5e5
commit 4329dad720

View File

@ -114,12 +114,7 @@ export default function HomePage() {
/>
{/* Game Period Cards */}
<GamePeriod
purchaseStartDate={new Date('2025-01-01')}
purchaseEndDate={new Date('2025-12-31')}
gameStartDate={new Date('2025-01-01')}
gameEndDate={new Date('2025-12-31')}
/>
<GamePeriod />
{/* Grand Prize Banner */}
<GrandPrize