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

@@ -47,6 +47,19 @@ export interface PostSaveRequest {
tags: string[];
}
export interface ChessPuzzle {
id: number;
date: string;
title: string;
theme: string;
fen: string;
answer: string;
answerUci: string;
hint: string;
rating: number;
sourceUrl: string;
}
// 4. 로그인 응답
export interface AuthResponse {
grantType: string;