Files
blog-frontend/src/app/chess/play/[gameId]/page.tsx
박원엽 924dd8b372
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 2m11s
feat: add Maia chess game UI
2026-06-19 14:49:28 +09:00

20 lines
522 B
TypeScript

import type { Metadata } from 'next';
import ChessGamePlayClient from '@/components/chess/ChessGamePlayClient';
export const metadata: Metadata = {
title: 'Maia 대국 | WYPark Blog',
description: 'Maia 체스 대국을 이어서 진행하고 PGN을 확인합니다.',
};
type ChessGamePageProps = {
params: Promise<{
gameId: string;
}>;
};
export default async function ChessGamePage({ params }: ChessGamePageProps) {
const { gameId } = await params;
return <ChessGamePlayClient gameId={gameId} />;
}