import { type ReactNode } from "react"; type SectionProps = { children: ReactNode; className?: string; }; /** 通用区块容器 - 统一内边距与最大宽度,响应式(来自 nomadlms) */ export function Section({ children, className = "" }: SectionProps) { return (
{children}
); }