feat: 新增控笔练习,增加首页公告

This commit is contained in:
R524809
2026-05-29 10:21:39 +08:00
parent 2f0c4ab591
commit a6e8f4df02
28 changed files with 1045 additions and 672 deletions
@@ -0,0 +1,16 @@
export interface UnreleasedPageEntry {
id: string;
title: string;
subtitle: string;
path: string;
}
export const UNRELEASED_PAGE_ENTRIES: UnreleasedPageEntry[] = [
// 在这里手动添加未上线页面
{
id: 'pen-control-sheet',
title: '控笔',
subtitle: '控笔练习',
path: '/chinesePages/penControlSheet/penControlSheet',
},
];