feat: add daily chess puzzle page
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 2m29s
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 2m29s
This commit is contained in:
11
src/app/play/chess/page.tsx
Normal file
11
src/app/play/chess/page.tsx
Normal 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 />;
|
||||
}
|
||||
Reference in New Issue
Block a user