feat: add Maia chess game UI
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 2m11s

This commit is contained in:
박원엽
2026-06-19 14:49:28 +09:00
parent a828be323a
commit 924dd8b372
14 changed files with 1441 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
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} />;
}