Files
koring-launcher/src/components/setting/SectionTitle.tsx
T
dream_pep 3653e26a09 feat: 发布 v1.2.0 版本,新增多项核心功能
- 引入 electron-updater 实现自动更新功能
- 新增 Java 环境扫描与校验的 IPC 处理逻辑
- 实现离线账号登录功能
- 新增配置变更跨进程广播机制
- 重构游戏启动逻辑,使用主进程内存配置作为唯一权威来源
- 新增界面显示与语言设置的配置页面
- 添加 Windows 平台自动发布 CI 流水线
- 迁移旧版配置/认证文件到用户数据目录
- 修复崩溃日志路径、表单控件等多项 bug
- 重构设置页组件系统统一界面样式
2026-08-28 02:08:12 +08:00

23 lines
644 B
TypeScript

import { Typography } from "@heroui/react";
export function PageHeader({ title, desc }: { title: string; desc: string }) {
return (
<>
<Typography.Heading level={2} className="text-xl font-bold text-foreground mb-1">
{title}
</Typography.Heading>
<Typography.Paragraph size="sm" className="text-sm text-muted-foreground mb-6">
{desc}
</Typography.Paragraph>
</>
);
}
export function SectionTitle({ children }: { children: React.ReactNode }) {
return (
<Typography.Heading level={3} className="text-lg font-bold text-foreground mb-3">
{children}
</Typography.Heading>
);
}