feat: 开发完成拼音每日一练

This commit is contained in:
R524809
2026-05-20 15:33:06 +08:00
parent cab4e9c33f
commit d52339c0fa
25 changed files with 1478 additions and 428 deletions
@@ -85,7 +85,7 @@ export const LETTER_TRACING_WORKSHEET_DEFINITIONS = [
{
id: 'letter-tracing-daily-checkin',
icon: 'task-o',
title: '每日打卡',
title: '字母每日打卡',
subtitle: '四宫格每日字母打卡练习',
ageMin: 6,
ageMax: 8,
@@ -95,7 +95,8 @@ export const LETTER_TRACING_WORKSHEET_DEFINITIONS = [
},
] as const satisfies ReadonlyArray<LetterTracingWorksheetDefinition>;
type LetterTracingWorksheetRow = (typeof LETTER_TRACING_WORKSHEET_DEFINITIONS)[number];
type LetterTracingWorksheetRow =
(typeof LETTER_TRACING_WORKSHEET_DEFINITIONS)[number];
const LETTER_TRACING_WORKSHEET_BY_ID = Object.fromEntries(
LETTER_TRACING_WORKSHEET_DEFINITIONS.map((m) => [m.id, m]),