feat: add daily chess puzzle page
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 2m29s

This commit is contained in:
wypark
2026-05-29 00:18:05 +09:00
parent 4bc0441490
commit ab585b5faa
8 changed files with 516 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import type { Metadata } from 'next';
import ChessPuzzleClient from '@/components/chess/ChessPuzzleClient';
export const metadata: Metadata = {
title: '오늘의 체스 퍼즐 | WYPark Blog',
description: '오늘의 한 수 메이트 체스 퍼즐',
};
export default function ChessPuzzlePage() {
return <ChessPuzzleClient />;
}