6e51cb7d16
- Updated comments in various components, schemas, and repositories to remove references to original Dart files. - Ensured consistency in documentation while maintaining the context of the code.
19 lines
425 B
TypeScript
19 lines
425 B
TypeScript
"use client";
|
|
/**
|
|
* AiDisclosureBanner AI 声明横幅
|
|
*
|
|
*
|
|
*
|
|
* 视觉:居中灰色小字 "All content is generated by AI"
|
|
* 用途:位于聊天区顶部,声明 AI 生成内容(合规 / 法律要求)
|
|
*/
|
|
import styles from "./chat-area.module.css";
|
|
|
|
export function AiDisclosureBanner() {
|
|
return (
|
|
<div className={styles.aiDisclosure} role="note">
|
|
All content is generated by AI
|
|
</div>
|
|
);
|
|
}
|